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

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

Issue 11369039: Add setBounds method and browsertest for get/set bounds to app window API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/api/app_window.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5 // This is used by the app window API internally to pass through messages to
6 // the shell window. 6 // the shell window.
7 [internal, nodoc] namespace app.currentWindowInternal { 7 [internal, nodoc] namespace app.currentWindowInternal {
8
9 // TODO(asargent) - We need to add support for referencing types in
10 // other namespaces (crbug.com/158654). For now just duplicate this
11 // dictionary from app.window.
12 dictionary Bounds {
13 long? left;
14 long? top;
15 long? width;
16 long? height;
17 };
18
19
8 interface Functions { 20 interface Functions {
9 static void focus(); 21 static void focus();
10 static void minimize(); 22 static void minimize();
11 static void maximize(); 23 static void maximize();
12 static void restore(); 24 static void restore();
13 static void drawAttention(); 25 static void drawAttention();
14 static void clearAttention(); 26 static void clearAttention();
15 static void show(); 27 static void show();
16 static void hide(); 28 static void hide();
29 static void setBounds(Bounds bounds);
17 }; 30 };
18 }; 31 };
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/api/app_window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698