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

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

Issue 10878040: Move context-sensitive app.window.* functions to app.window.current().* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
(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] namespace app.currentWindow {
Mihai Parparita -not on Chrome 2012/08/24 01:05:07 Other internal APIs (webRequestInternal, fileBrows
jeremya 2012/08/24 02:10:08 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();
benwells 2012/08/24 01:11:55 Maybe I am not understanding the change properly,
jeremya 2012/08/24 02:10:08 This namespace is internal-only. The name 'current
20 };
21 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698