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

Unified Diff: chrome/common/extensions/docs/static/first_app.html

Issue 10659021: Move chrome.appWindow to chrome.app.window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 5 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
« no previous file with comments | « chrome/common/extensions/docs/static/app_lifecycle.html ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/static/first_app.html
diff --git a/chrome/common/extensions/docs/static/first_app.html b/chrome/common/extensions/docs/static/first_app.html
index 4a2861b0a0a24ac58fd938562044167c6c86e2e2..2005e364da64b7c12c21202db574f8152a25ec3d 100644
--- a/chrome/common/extensions/docs/static/first_app.html
+++ b/chrome/common/extensions/docs/static/first_app.html
@@ -53,7 +53,7 @@ describes this manifest in detail):
"scripts": ["background.js"]
}
},
- "permissions": ["experimental", "appWindow"],
+ "permissions": ["experimental", "app.window"],
"icons": { "16": "calculator-16.png", "128": "calculator-128.png" }
}
</pre>
@@ -73,7 +73,7 @@ with the following content:
<pre>
chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('window.html', {
+ chrome.app.window.create('window.html', {
'width': 400,
'height': 500
});
« no previous file with comments | « chrome/common/extensions/docs/static/app_lifecycle.html ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698