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

Unified Diff: chrome/common/extensions/docs/static/app_external.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
Index: chrome/common/extensions/docs/static/app_external.html
diff --git a/chrome/common/extensions/docs/static/app_external.html b/chrome/common/extensions/docs/static/app_external.html
index 2b21dd8e7b91dba821b8e317b5cb731e9b77d637..2c3fd20792b8f7af47671b43b99d969c7e831eea 100644
--- a/chrome/common/extensions/docs/static/app_external.html
+++ b/chrome/common/extensions/docs/static/app_external.html
@@ -181,14 +181,14 @@ and one for the sandboxed page:
<pre>
chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('window.html', {
+ chrome.app.window.create('window.html', {
'width': 400,
'height': 400,
'left': 0,
'top': 0
});
- chrome.appWindow.create('sandboxed.html', {
+ chrome.app.window.create('sandboxed.html', {
'width': 400,
'height': 400,
'left': 400,
@@ -238,7 +238,7 @@ opens:
var myWin = null;
chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('sandboxed.html', {
+ chrome.app.window.create('sandboxed.html', {
'width': 400,
'height': 400
}, function(win) {
« no previous file with comments | « chrome/common/extensions/docs/static/app.window.html ('k') | chrome/common/extensions/docs/static/app_hardware.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698