| Index: chrome/common/extensions/docs/server2/templates/articles/app_external.html
|
| diff --git a/chrome/common/extensions/docs/server2/templates/articles/app_external.html b/chrome/common/extensions/docs/server2/templates/articles/app_external.html
|
| index b88c0b2a4279c60ee6ba49c2bfef543d55f9ab76..663f7b1e4885e8f4fedb6596609f70800470e5cd 100644
|
| --- a/chrome/common/extensions/docs/server2/templates/articles/app_external.html
|
| +++ b/chrome/common/extensions/docs/server2/templates/articles/app_external.html
|
| @@ -179,7 +179,7 @@ and one for the sandboxed page:
|
| </p>
|
|
|
| <pre>
|
| -chrome.experimental.app.onLaunched.addListener(function() {
|
| +chrome.app.runtime.onLaunched.addListener(function() {
|
| chrome.app.window.create('window.html', {
|
| 'width': 400,
|
| 'height': 400,
|
| @@ -236,7 +236,7 @@ opens:
|
| <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
|
| @@ -278,4 +278,4 @@ var messageHandler = function(e) {
|
| window.addEventListener('message', messageHandler);
|
| </pre>
|
|
|
| -<p class="backtotop"><a href="#top">Back to top</a></p>
|
| +<p class="backtotop"><a href="#top">Back to top</a></p>
|
|
|