| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_tab_contents_view.h" | 5 #include "content/test/test_tab_contents_view.h" |
| 6 | 6 |
| 7 TestTabContentsView::TestTabContentsView() { | 7 TestTabContentsView::TestTabContentsView() { |
| 8 } | 8 } |
| 9 | 9 |
| 10 TestTabContentsView::~TestTabContentsView() { | 10 TestTabContentsView::~TestTabContentsView() { |
| 11 } | 11 } |
| 12 | 12 |
| 13 void TestTabContentsView::CreateNewWindow( | 13 void TestTabContentsView::CreateNewWindow( |
| 14 int route_id, | 14 int route_id, |
| 15 const ViewHostMsg_CreateWindow_Params& params) { | 15 const ViewHostMsg_CreateWindow_Params& params, |
| 16 content::ContentFrame* opener) { |
| 16 } | 17 } |
| 17 | 18 |
| 18 void TestTabContentsView::CreateNewWidget(int route_id, | 19 void TestTabContentsView::CreateNewWidget(int route_id, |
| 19 WebKit::WebPopupType popup_type) { | 20 WebKit::WebPopupType popup_type) { |
| 20 } | 21 } |
| 21 | 22 |
| 22 void TestTabContentsView::CreateNewFullscreenWidget(int route_id) { | 23 void TestTabContentsView::CreateNewFullscreenWidget(int route_id) { |
| 23 } | 24 } |
| 24 | 25 |
| 25 void TestTabContentsView::ShowCreatedWindow(int route_id, | 26 void TestTabContentsView::ShowCreatedWindow(int route_id, |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 126 } |
| 126 | 127 |
| 127 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { | 128 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { |
| 128 } | 129 } |
| 129 | 130 |
| 130 void TestTabContentsView::InstallOverlayView(gfx::NativeView view) { | 131 void TestTabContentsView::InstallOverlayView(gfx::NativeView view) { |
| 131 } | 132 } |
| 132 | 133 |
| 133 void TestTabContentsView::RemoveOverlayView() { | 134 void TestTabContentsView::RemoveOverlayView() { |
| 134 } | 135 } |
| OLD | NEW |