| Index: chrome/common/extensions/docs/apps/app_external.html
|
| diff --git a/chrome/common/extensions/docs/apps/app_external.html b/chrome/common/extensions/docs/apps/app_external.html
|
| index e483cab1f23ca23a120a6da8643d8a509d427b2c..6b49998a1dda24e418443b35275d61c544dbaa6c 100644
|
| --- a/chrome/common/extensions/docs/apps/app_external.html
|
| +++ b/chrome/common/extensions/docs/apps/app_external.html
|
| @@ -350,7 +350,7 @@ Here's a sample that creates two windows,
|
| one for the main app window that isn't sandboxed,
|
| and one for the sandboxed page:
|
| </p>
|
| -<pre>chrome.experimental.app.onLaunched.addListener(function() {
|
| +<pre>chrome.app.runtime.onLaunched.addListener(function() {
|
| chrome.app.window.create('window.html', {
|
| 'width': 400,
|
| 'height': 400,
|
| @@ -393,7 +393,7 @@ that posts a message to the sandboxed page it
|
| opens:
|
| </p>
|
| <pre>var myWin = null;
|
| -chrome.experimental.app.onLaunched.addListener(function() {
|
| +chrome.app.runtime.onLaunched.addListener(function() {
|
| chrome.app.window.create('sandboxed.html', {
|
| 'width': 400,
|
| 'height': 400
|
|
|