| 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 "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "content/browser/browser_url_handler_impl.h" | 10 #include "content/browser/browser_url_handler_impl.h" |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 int route_id, | 249 int route_id, |
| 250 blink::WebPopupType popup_type) { | 250 blink::WebPopupType popup_type) { |
| 251 } | 251 } |
| 252 | 252 |
| 253 void TestWebContents::CreateNewFullscreenWidget(int render_process_id, | 253 void TestWebContents::CreateNewFullscreenWidget(int render_process_id, |
| 254 int route_id) { | 254 int route_id) { |
| 255 } | 255 } |
| 256 | 256 |
| 257 void TestWebContents::ShowCreatedWindow(int route_id, | 257 void TestWebContents::ShowCreatedWindow(int route_id, |
| 258 WindowOpenDisposition disposition, | 258 WindowOpenDisposition disposition, |
| 259 const gfx::Rect& initial_pos, | 259 const gfx::Rect& initial_rect, |
| 260 bool user_gesture) { | 260 bool user_gesture) { |
| 261 } | 261 } |
| 262 | 262 |
| 263 void TestWebContents::ShowCreatedWidget(int route_id, | 263 void TestWebContents::ShowCreatedWidget(int route_id, |
| 264 const gfx::Rect& initial_pos) { | 264 const gfx::Rect& initial_rect) { |
| 265 } | 265 } |
| 266 | 266 |
| 267 void TestWebContents::ShowCreatedFullscreenWidget(int route_id) { | 267 void TestWebContents::ShowCreatedFullscreenWidget(int route_id) { |
| 268 } | 268 } |
| 269 | 269 |
| 270 } // namespace content | 270 } // namespace content |
| OLD | NEW |