Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: ui/views/controls/views_text_services_context_menu.cc

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed tapted's comments and made things work Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/views/controls/views_text_services_context_menu.cc
diff --git a/ui/views/controls/views_text_services_context_menu.cc b/ui/views/controls/views_text_services_context_menu.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d393409bf7de042e6c3f2ed6c84b26736f69de9a
--- /dev/null
+++ b/ui/views/controls/views_text_services_context_menu.cc
@@ -0,0 +1,23 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/views/controls/views_text_services_context_menu.h"
+
+#include "ui/base/ime/text_input_client.h"
tapted 2016/12/13 05:11:24 no need for these #includes
spqchan 2016/12/15 23:29:01 Done.
+#include "ui/base/models/simple_menu_model.h"
+#include "ui/views/view.h"
+#include "ui/views/word_lookup_client.h"
+
+namespace views {
+
+// static
+ViewsTextServicesContextMenu* ViewsTextServicesContextMenu::Create(
+ ui::TextInputClient* text_client,
+ WordLookupClient* lookup_client,
+ ui::SimpleMenuModel* menu,
+ View* view) {
+ return nullptr;
+}
+
+} // views

Powered by Google App Engine
This is Rietveld 408576698