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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_views.cc

Issue 7740024: Implement touch selection menu. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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/renderer_host/render_widget_host_view_views.cc
diff --git a/chrome/browser/renderer_host/render_widget_host_view_views.cc b/chrome/browser/renderer_host/render_widget_host_view_views.cc
index 6178cbf711b66dc08ef16331e394673531e4a129..733e046bae01359c16d8164742cab6599d52380d 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_views.cc
+++ b/chrome/browser/renderer_host/render_widget_host_view_views.cc
@@ -373,13 +373,13 @@ void RenderWidgetHostViewViews::SelectRect(const gfx::Point& start,
}
bool RenderWidgetHostViewViews::IsCommandIdChecked(int command_id) const {
- // TODO(varunjain): implement this and other menu delegate methods.
NOTREACHED();
return true;
}
bool RenderWidgetHostViewViews::IsCommandIdEnabled(int command_id) const {
- NOTREACHED();
+ // TODO(varunjain): implement this.
+ NOTIMPLEMENTED();
return true;
}
@@ -391,7 +391,8 @@ bool RenderWidgetHostViewViews::GetAcceleratorForCommandId(
}
void RenderWidgetHostViewViews::ExecuteCommand(int command_id) {
- NOTREACHED();
+ // TODO(varunjain): implement this.
+ NOTIMPLEMENTED();
}
std::string RenderWidgetHostViewViews::GetClassName() const {
« no previous file with comments | « no previous file | views/touchui/touch_selection_controller_impl.h » ('j') | views/touchui/touch_selection_controller_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698