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

Unified Diff: chrome/common/extensions/docs/examples/extensions/calculator/main.js

Issue 10659021: Move chrome.appWindow to chrome.app.window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased and resolved conflicts Created 8 years, 6 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/examples/extensions/calculator/main.js
diff --git a/chrome/common/extensions/docs/examples/extensions/calculator/main.js b/chrome/common/extensions/docs/examples/extensions/calculator/main.js
index 982d326b0484dec5bc2a93711f3e15e5d0fc5809..9187416c4e6793d6a280775901fc1280700ec5fa 100644
--- a/chrome/common/extensions/docs/examples/extensions/calculator/main.js
+++ b/chrome/common/extensions/docs/examples/extensions/calculator/main.js
@@ -3,7 +3,7 @@
// found in the LICENSE file.
chrome.experimental.app.onLaunched.addListener(function() {
- chrome.appWindow.create('calculator.html', {
+ chrome.app.window.create('calculator.html', {
width: 217,
height: 223
});

Powered by Google App Engine
This is Rietveld 408576698