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

Unified Diff: chrome/common/extensions/docs/static/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/static/app_lifecycle.html
diff --git a/chrome/common/extensions/docs/static/app_lifecycle.html b/chrome/common/extensions/docs/static/app_lifecycle.html
index 5a48c1f888675fff116e2bedb0bee75506416cad..5b330941ea5723148843744e06a8edf9cc65c2b1 100644
--- a/chrome/common/extensions/docs/static/app_lifecycle.html
+++ b/chrome/common/extensions/docs/static/app_lifecycle.html
@@ -101,7 +101,7 @@ for example, a chat panel.
<pre>
chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('main.html', {
+ chrome.app.window.create('main.html', {
width: 800,
height: 600,
minWidth: 800,
@@ -119,7 +119,7 @@ chrome.experimental.app.onLaunched.addListener(function() {
<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/static/app_hardware.html ('k') | chrome/common/extensions/docs/static/first_app.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698