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 |
}); |