Index: chrome/common/extensions/docs/static/app_external.html |
diff --git a/chrome/common/extensions/docs/static/app_external.html b/chrome/common/extensions/docs/static/app_external.html |
index d4fc4b86135e84053808d83fc8080bad0b41a966..9dd2762aa083b7c9d942cacefa76a033a829c935 100644 |
--- a/chrome/common/extensions/docs/static/app_external.html |
+++ b/chrome/common/extensions/docs/static/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 |
@@ -279,4 +279,3 @@ window.addEventListener('message', messageHandler); |
</pre> |
<p class="backtotop"><a href="#top">Back to top</a></p> |
- |