| 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'
|
|
|