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

Unified Diff: chrome/browser/tab_contents/spelling_menu_observer.cc

Issue 9382037: Move ContextMenuParams struct from webkit/glue to content/public/common. The reasons are: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 10 months 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: chrome/browser/tab_contents/spelling_menu_observer.cc
===================================================================
--- chrome/browser/tab_contents/spelling_menu_observer.cc (revision 121660)
+++ chrome/browser/tab_contents/spelling_menu_observer.cc (working copy)
@@ -20,10 +20,10 @@
#include "chrome/common/pref_names.h"
#include "content/browser/renderer_host/render_view_host.h"
#include "content/browser/renderer_host/render_widget_host_view.h"
+#include "content/public/common/context_menu_params.h"
#include "grit/generated_resources.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingResult.h"
#include "ui/base/l10n/l10n_util.h"
-#include "webkit/glue/context_menu.h"
using content::BrowserThread;
@@ -37,7 +37,7 @@
SpellingMenuObserver::~SpellingMenuObserver() {
}
-void SpellingMenuObserver::InitMenu(const ContextMenuParams& params) {
+void SpellingMenuObserver::InitMenu(const content::ContextMenuParams& params) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
// Exit if we are not in an editable element because we add a menu item only

Powered by Google App Engine
This is Rietveld 408576698