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

Side by Side Diff: content/test/test_web_contents_view.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/test/test_web_contents_view.h" 5 #include "content/test/test_web_contents_view.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 TestWebContentsView::TestWebContentsView() { 9 TestWebContentsView::TestWebContentsView() {
10 } 10 }
(...skipping 19 matching lines...) Expand all
30 bool user_gesture) { 30 bool user_gesture) {
31 } 31 }
32 32
33 void TestWebContentsView::ShowCreatedWidget(int route_id, 33 void TestWebContentsView::ShowCreatedWidget(int route_id,
34 const gfx::Rect& initial_pos) { 34 const gfx::Rect& initial_pos) {
35 } 35 }
36 36
37 void TestWebContentsView::ShowCreatedFullscreenWidget(int route_id) { 37 void TestWebContentsView::ShowCreatedFullscreenWidget(int route_id) {
38 } 38 }
39 39
40 void TestWebContentsView::ShowContextMenu(const ContextMenuParams& params) { 40 void TestWebContentsView::ShowContextMenu(
41 const content::ContextMenuParams& params) {
41 } 42 }
42 43
43 void TestWebContentsView::ShowPopupMenu(const gfx::Rect& bounds, 44 void TestWebContentsView::ShowPopupMenu(const gfx::Rect& bounds,
44 int item_height, 45 int item_height,
45 double item_font_size, 46 double item_font_size,
46 int selected_item, 47 int selected_item,
47 const std::vector<WebMenuItem>& items, 48 const std::vector<WebMenuItem>& items,
48 bool right_aligned) { 49 bool right_aligned) {
49 } 50 }
50 51
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 void TestWebContentsView::GetViewBounds(gfx::Rect* out) const { 130 void TestWebContentsView::GetViewBounds(gfx::Rect* out) const {
130 } 131 }
131 132
132 void TestWebContentsView::InstallOverlayView(gfx::NativeView view) { 133 void TestWebContentsView::InstallOverlayView(gfx::NativeView view) {
133 } 134 }
134 135
135 void TestWebContentsView::RemoveOverlayView() { 136 void TestWebContentsView::RemoveOverlayView() {
136 } 137 }
137 138
138 } // namespace content 139 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698