Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // File-level comment to appease parser. Eventually this will not be necessary. | |
| 6 | |
| 7 [internal,nodoc] namespace app.currentWindowInternal { | |
|
Mihai Parparita -not on Chrome
2012/08/27 23:21:06
Nit: space after comma.
jeremya
2012/08/30 02:38:54
Done.
| |
| 8 interface Functions { | |
| 9 // Focus the window. | |
| 10 static void focus(); | |
| 11 | |
| 12 // Minimize the window. | |
| 13 static void minimize(); | |
| 14 | |
| 15 // Maximize the window. | |
| 16 static void maximize(); | |
| 17 | |
| 18 // Restore the window. | |
| 19 static void restore(); | |
| 20 }; | |
| 21 }; | |
| OLD | NEW |