Remove the unimplemented `more` option from the copy/paste toolbar. (#3934)

Remove the unimplemented `more` option from the copy/paste toolbar.

Punting this feature for the near time, so I'm removing the dead option
from the toolbar.
diff --git a/packages/flutter/lib/src/material/text_selection.dart b/packages/flutter/lib/src/material/text_selection.dart
index 1d7fda0..a60d158 100644
--- a/packages/flutter/lib/src/material/text_selection.dart
+++ b/packages/flutter/lib/src/material/text_selection.dart
@@ -9,8 +9,6 @@
 import 'package:flutter/services.dart';
 
 import 'flat_button.dart';
-import 'icon_button.dart';
-import 'icons.dart';
 import 'material.dart';
 import 'theme.dart';
 
@@ -40,8 +38,6 @@
     if (value.text.isNotEmpty) {
       if (value.selection.isCollapsed)
         items.add(new FlatButton(child: new Text('SELECT ALL'), onPressed: _handleSelectAll));
-      // TODO(mpcomplete): implement `more` menu.
-      items.add(new IconButton(icon: Icons.more_vert));
     }
 
     return new Material(