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

Unified Diff: chrome/common/extensions/api/app_window.idl

Issue 10659021: Move chrome.appWindow to chrome.app.window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased and resolved conflicts Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/app_window.idl
diff --git a/chrome/common/extensions/api/app_window.idl b/chrome/common/extensions/api/app_window.idl
index 733bcc5c65bfffa4beccaff69530406dd0331ddc..68407b91ba45876e3160ef997dbcc64c88c510ff 100644
--- a/chrome/common/extensions/api/app_window.idl
+++ b/chrome/common/extensions/api/app_window.idl
@@ -4,7 +4,7 @@
// File-level comment to appease parser. Eventually this will not be necessary.
-[nodoc] namespace appWindow {
+[nodoc] namespace app.window {
dictionary CreateWindowOptions {
// Width of the window.
long? width;
@@ -27,7 +27,8 @@
DOMString? frame;
};
- callback CreateWindowCallback = void (long view_id);
+ callback CreateWindowCallback =
+ void ([instanceOf=global] object created_window);
interface Functions {
static void create(DOMString url,

Powered by Google App Engine
This is Rietveld 408576698