OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "extensions/browser/app_window/test_app_window_contents.h" |
| 6 |
| 7 #include "content/public/browser/web_contents.h" |
| 8 |
| 9 namespace extensions { |
| 10 |
| 11 TestAppWindowContents::TestAppWindowContents(content::WebContents* web_contents) |
| 12 : web_contents_(web_contents) { |
| 13 } |
| 14 |
| 15 TestAppWindowContents::~TestAppWindowContents() { |
| 16 } |
| 17 |
| 18 void TestAppWindowContents::Initialize(content::BrowserContext* context, |
| 19 const GURL& url) { |
| 20 } |
| 21 |
| 22 void TestAppWindowContents::LoadContents(int32 creator_process_id) { |
| 23 } |
| 24 |
| 25 void TestAppWindowContents::NativeWindowChanged( |
| 26 NativeAppWindow* native_app_window) { |
| 27 } |
| 28 |
| 29 void TestAppWindowContents::NativeWindowClosed() { |
| 30 } |
| 31 |
| 32 void TestAppWindowContents::DispatchWindowShownForTests() const { |
| 33 } |
| 34 |
| 35 content::WebContents* TestAppWindowContents::GetWebContents() const { |
| 36 return web_contents_.get(); |
| 37 } |
| 38 |
| 39 } // namespace extensions |
OLD | NEW |