| 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 namespace app.currentWindowInternal { | 7 [use_movable_types=true] 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 { |
| 11 long? left; | 11 long? left; |
| 12 long? top; | 12 long? top; |
| 13 long? width; | 13 long? width; |
| 14 long? height; | 14 long? height; |
| 15 }; | 15 }; |
| 16 | 16 |
| 17 // Null or undefined indicates that a value should not change. A value of 0 | 17 // Null or undefined indicates that a value should not change. A value of 0 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. | 64 // Only sent in tests. |
| 65 static void onWindowShownForTests(); | 65 static void onWindowShownForTests(); |
| 66 }; | 66 }; |
| 67 }; | 67 }; |
| OLD | NEW |