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

Side by Side Diff: content/browser/tab_contents/tab_contents_view_android.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/tab_contents/tab_contents_view_android.h" 5 #include "content/browser/tab_contents/tab_contents_view_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/renderer_host/render_view_host.h" 8 #include "content/browser/renderer_host/render_view_host.h"
9 #include "content/browser/renderer_host/render_widget_host.h" 9 #include "content/browser/renderer_host/render_widget_host.h"
10 10
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 void TabContentsViewAndroid::ShowCreatedWidget( 141 void TabContentsViewAndroid::ShowCreatedWidget(
142 int route_id, const gfx::Rect& initial_pos) { 142 int route_id, const gfx::Rect& initial_pos) {
143 NOTIMPLEMENTED(); 143 NOTIMPLEMENTED();
144 } 144 }
145 145
146 void TabContentsViewAndroid::ShowCreatedFullscreenWidget(int route_id) { 146 void TabContentsViewAndroid::ShowCreatedFullscreenWidget(int route_id) {
147 NOTIMPLEMENTED(); 147 NOTIMPLEMENTED();
148 } 148 }
149 149
150 void TabContentsViewAndroid::ShowContextMenu(const ContextMenuParams& params) { 150 void TabContentsViewAndroid::ShowContextMenu(
151 const content::ContextMenuParams& params) {
151 NOTIMPLEMENTED(); 152 NOTIMPLEMENTED();
152 } 153 }
153 154
154 void TabContentsViewAndroid::ShowPopupMenu( 155 void TabContentsViewAndroid::ShowPopupMenu(
155 const gfx::Rect& bounds, 156 const gfx::Rect& bounds,
156 int item_height, 157 int item_height,
157 double item_font_size, 158 double item_font_size,
158 int selected_item, 159 int selected_item,
159 const std::vector<WebMenuItem>& items, 160 const std::vector<WebMenuItem>& items,
160 bool right_aligned) { 161 bool right_aligned) {
(...skipping 12 matching lines...) Expand all
173 NOTIMPLEMENTED(); 174 NOTIMPLEMENTED();
174 } 175 }
175 176
176 void TabContentsViewAndroid::GotFocus() { 177 void TabContentsViewAndroid::GotFocus() {
177 NOTIMPLEMENTED(); 178 NOTIMPLEMENTED();
178 } 179 }
179 180
180 void TabContentsViewAndroid::TakeFocus(bool reverse) { 181 void TabContentsViewAndroid::TakeFocus(bool reverse) {
181 NOTIMPLEMENTED(); 182 NOTIMPLEMENTED();
182 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698