| 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.h" | 5 #include "content/test/test_web_contents.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "content/browser/browser_url_handler_impl.h" | 9 #include "content/browser/browser_url_handler_impl.h" |
| 10 #include "content/browser/frame_host/navigation_entry_impl.h" | 10 #include "content/browser/frame_host/navigation_entry_impl.h" |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 } | 219 } |
| 220 | 220 |
| 221 void TestWebContents::CreateNewWindow( | 221 void TestWebContents::CreateNewWindow( |
| 222 int route_id, | 222 int route_id, |
| 223 int main_frame_route_id, | 223 int main_frame_route_id, |
| 224 const ViewHostMsg_CreateWindow_Params& params, | 224 const ViewHostMsg_CreateWindow_Params& params, |
| 225 SessionStorageNamespace* session_storage_namespace) { | 225 SessionStorageNamespace* session_storage_namespace) { |
| 226 } | 226 } |
| 227 | 227 |
| 228 void TestWebContents::CreateNewWidget(int route_id, | 228 void TestWebContents::CreateNewWidget(int route_id, |
| 229 WebKit::WebPopupType popup_type) { | 229 blink::WebPopupType popup_type) { |
| 230 } | 230 } |
| 231 | 231 |
| 232 void TestWebContents::CreateNewFullscreenWidget(int route_id) { | 232 void TestWebContents::CreateNewFullscreenWidget(int route_id) { |
| 233 } | 233 } |
| 234 | 234 |
| 235 void TestWebContents::ShowCreatedWindow(int route_id, | 235 void TestWebContents::ShowCreatedWindow(int route_id, |
| 236 WindowOpenDisposition disposition, | 236 WindowOpenDisposition disposition, |
| 237 const gfx::Rect& initial_pos, | 237 const gfx::Rect& initial_pos, |
| 238 bool user_gesture) { | 238 bool user_gesture) { |
| 239 } | 239 } |
| 240 | 240 |
| 241 void TestWebContents::ShowCreatedWidget(int route_id, | 241 void TestWebContents::ShowCreatedWidget(int route_id, |
| 242 const gfx::Rect& initial_pos) { | 242 const gfx::Rect& initial_pos) { |
| 243 } | 243 } |
| 244 | 244 |
| 245 void TestWebContents::ShowCreatedFullscreenWidget(int route_id) { | 245 void TestWebContents::ShowCreatedFullscreenWidget(int route_id) { |
| 246 } | 246 } |
| 247 | 247 |
| 248 } // namespace content | 248 } // namespace content |
| OLD | NEW |