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

Unified Diff: chrome/test/data/extensions/api_test/lazy_background_page/on_installed/background.js

Issue 10310182: Hack to restrict runtime API to dev channel rather than experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: docs Created 8 years, 7 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/test/data/extensions/api_test/lazy_background_page/on_installed/background.js
diff --git a/chrome/test/data/extensions/api_test/lazy_background_page/on_installed/background.js b/chrome/test/data/extensions/api_test/lazy_background_page/on_installed/background.js
index 09ab2f43ae21985d19d4526201bd5161604807b1..5e11ef4765513f4c2ef6818a406d7e8e8f4ba605 100644
--- a/chrome/test/data/extensions/api_test/lazy_background_page/on_installed/background.js
+++ b/chrome/test/data/extensions/api_test/lazy_background_page/on_installed/background.js
@@ -2,6 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-chrome.experimental.runtime.onInstalled.addListener(function() {
+chrome.runtime.onInstalled.addListener(function() {
chrome.test.notifyPass();
});

Powered by Google App Engine
This is Rietveld 408576698