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

Side by Side Diff: extensions/common/api/app_current_window_internal.idl

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 (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 // This is used by the app window API internally to pass through messages to 5 // This is used by the app window API internally to pass through messages to
6 // the shell window. 6 // the shell window.
7 namespace app.currentWindowInternal { 7 namespace app.currentWindowInternal {
8 8
9 // Null or undefined indicates that a value should not change. 9 // Null or undefined indicates that a value should not change.
10 dictionary Bounds { 10 dictionary Bounds {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 }; 54 };
55 55
56 interface Events { 56 interface Events {
57 static void onClosed(); 57 static void onClosed();
58 static void onBoundsChanged(); 58 static void onBoundsChanged();
59 static void onFullscreened(); 59 static void onFullscreened();
60 static void onMinimized(); 60 static void onMinimized();
61 static void onMaximized(); 61 static void onMaximized();
62 static void onRestored(); 62 static void onRestored();
63 static void onAlphaEnabledChanged(); 63 static void onAlphaEnabledChanged();
64 // Only sent in tests.
65 static void onWindowShownForTests();
66 }; 64 };
67 }; 65 };
OLDNEW
« no previous file with comments | « extensions/browser/app_window/test_app_window_contents.cc ('k') | extensions/common/api/app_window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698