| OLD | NEW |
| 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 20 matching lines...) Expand all Loading... |
| 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( | 40 void TestWebContentsView::ShowContextMenu( |
| 41 const content::ContextMenuParams& params) { | 41 const ContextMenuParams& params) { |
| 42 } | 42 } |
| 43 | 43 |
| 44 void TestWebContentsView::ShowPopupMenu(const gfx::Rect& bounds, | 44 void TestWebContentsView::ShowPopupMenu(const gfx::Rect& bounds, |
| 45 int item_height, | 45 int item_height, |
| 46 double item_font_size, | 46 double item_font_size, |
| 47 int selected_item, | 47 int selected_item, |
| 48 const std::vector<WebMenuItem>& items, | 48 const std::vector<WebMenuItem>& items, |
| 49 bool right_aligned) { | 49 bool right_aligned) { |
| 50 } | 50 } |
| 51 | 51 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 return false; | 124 return false; |
| 125 } | 125 } |
| 126 | 126 |
| 127 void TestWebContentsView::CloseTabAfterEventTracking() { | 127 void TestWebContentsView::CloseTabAfterEventTracking() { |
| 128 } | 128 } |
| 129 | 129 |
| 130 void TestWebContentsView::GetViewBounds(gfx::Rect* out) const { | 130 void TestWebContentsView::GetViewBounds(gfx::Rect* out) const { |
| 131 } | 131 } |
| 132 | 132 |
| 133 } // namespace content | 133 } // namespace content |
| OLD | NEW |