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

Unified Diff: chrome/common/extensions/docs/server2/templates/articles/app_external.html

Issue 10834261: Move chrome.experimental.app.onLaunched event handler to chrome.app.runtime.onLaunched. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Another merge before retrying commit. Created 8 years, 4 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/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 471563636cb128ac788cb56ea7283123b3da0b7c..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
« no previous file with comments | « chrome/common/extensions/docs/samples.json ('k') | chrome/common/extensions/docs/server2/templates/articles/app_intents.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698