| OLD | NEW |
| 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 [nodoc] namespace app.currentWindowInternal { | 7 [nodoc] 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 static void onBoundsChanged(); | 60 static void onBoundsChanged(); |
| 61 static void onFullscreened(); | 61 static void onFullscreened(); |
| 62 static void onMinimized(); | 62 static void onMinimized(); |
| 63 static void onMaximized(); | 63 static void onMaximized(); |
| 64 static void onRestored(); | 64 static void onRestored(); |
| 65 static void onAlphaEnabledChanged(); | 65 static void onAlphaEnabledChanged(); |
| 66 // Only sent in tests. | 66 // Only sent in tests. |
| 67 static void onWindowShownForTests(); | 67 static void onWindowShownForTests(); |
| 68 }; | 68 }; |
| 69 }; | 69 }; |
| OLD | NEW |