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

Unified Diff: chrome/common/extensions/docs/apps/app_lifecycle.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/apps/app_lifecycle.html
diff --git a/chrome/common/extensions/docs/apps/app_lifecycle.html b/chrome/common/extensions/docs/apps/app_lifecycle.html
index 3be6bb398cf0816162138731ffeaacdd4d0f5922..0fc40f68f7f7e5d256c4790b9e88d8253a52a4ff 100644
--- a/chrome/common/extensions/docs/apps/app_lifecycle.html
+++ b/chrome/common/extensions/docs/apps/app_lifecycle.html
@@ -275,7 +275,7 @@ for example, a chat panel.
<p>Here's a sample <code>background.js</code>
with a 'shell' window:</p>
<pre>chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('main.html', {
+ chrome.app.window.create('main.html', {
width: 800,
height: 600,
minWidth: 800,
@@ -290,7 +290,7 @@ for example, a chat panel.
with a 'panel' window:
</p>
<pre>chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('index.html', {
+ chrome.app.window.create('index.html', {
width: 400,
height: 200,
type: 'panel'
« no previous file with comments | « chrome/common/extensions/docs/apps/app_hardware.html ('k') | chrome/common/extensions/docs/apps/experimental.identity.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698