Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: extensions/browser/app_window/test_app_window_contents.cc

Issue 696063008: Refactor ShellDesktopController and ShellNativeAppWindow to allow for non-aura implementations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: + Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « extensions/browser/app_window/test_app_window_contents.h ('k') | extensions/browser/extensions_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698