| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "extensions/browser/app_window/test_app_window_contents.h" | 5 #include "extensions/browser/app_window/test_app_window_contents.h" |
| 6 | 6 |
| 7 #include "content/public/browser/web_contents.h" | 7 #include "content/public/browser/web_contents.h" |
| 8 | 8 |
| 9 namespace extensions { | 9 namespace extensions { |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 void TestAppWindowContents::LoadContents(int32_t creator_process_id) {} | 22 void TestAppWindowContents::LoadContents(int32_t creator_process_id) {} |
| 23 | 23 |
| 24 void TestAppWindowContents::NativeWindowChanged( | 24 void TestAppWindowContents::NativeWindowChanged( |
| 25 NativeAppWindow* native_app_window) { | 25 NativeAppWindow* native_app_window) { |
| 26 } | 26 } |
| 27 | 27 |
| 28 void TestAppWindowContents::NativeWindowClosed() { | 28 void TestAppWindowContents::NativeWindowClosed() { |
| 29 } | 29 } |
| 30 | 30 |
| 31 void TestAppWindowContents::DispatchWindowShownForTests() const { | |
| 32 } | |
| 33 | |
| 34 void TestAppWindowContents::OnWindowReady() {} | 31 void TestAppWindowContents::OnWindowReady() {} |
| 35 | 32 |
| 36 content::WebContents* TestAppWindowContents::GetWebContents() const { | 33 content::WebContents* TestAppWindowContents::GetWebContents() const { |
| 37 return web_contents_.get(); | 34 return web_contents_.get(); |
| 38 } | 35 } |
| 39 | 36 |
| 40 WindowController* TestAppWindowContents::GetWindowController() const { | 37 WindowController* TestAppWindowContents::GetWindowController() const { |
| 41 return nullptr; | 38 return nullptr; |
| 42 } | 39 } |
| 43 | 40 |
| 44 } // namespace extensions | 41 } // namespace extensions |
| OLD | NEW |