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

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

Issue 2553263002: Remove code to defer app window appearance until first paint. (Closed)
Patch Set: nit Created 4 years 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
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
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
OLDNEW
« no previous file with comments | « extensions/browser/app_window/test_app_window_contents.h ('k') | extensions/common/api/app_current_window_internal.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698