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

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

Issue 11147037: Add a 'hidden' option to chrome.app.window.create() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename 'createHidden' to 'hidden' for less redundancy Created 8 years, 2 months 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 | Annotate | Revision Log
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
6 // the shell window.
5 [internal, nodoc] namespace app.currentWindowInternal { 7 [internal, nodoc] namespace app.currentWindowInternal {
6 interface Functions { 8 interface Functions {
7 // Focus the window.
8 static void focus(); 9 static void focus();
9
10 // Minimize the window.
11 static void minimize(); 10 static void minimize();
12
13 // Maximize the window.
14 static void maximize(); 11 static void maximize();
15
16 // Restore the window.
17 static void restore(); 12 static void restore();
13 static void show();
14 static void hide();
18 }; 15 };
19 }; 16 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698