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

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: fix ash tests Created 8 years, 1 month 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();
18
19 // Draw attention to the window.
20 static void drawAttention(); 13 static void drawAttention();
21
22 // Clear attention to the window.
23 static void clearAttention(); 14 static void clearAttention();
15 static void show();
16 static void hide();
24 }; 17 };
25 }; 18 };
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/common/extensions/api/app_window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698