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

Unified Diff: chrome/test/data/extensions/api_test/lazy_background_page/wait_for_request/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/wait_for_request/background.js
diff --git a/chrome/test/data/extensions/api_test/lazy_background_page/wait_for_request/background.js b/chrome/test/data/extensions/api_test/lazy_background_page/wait_for_request/background.js
index 70d6317358b34d7e8e872138ffd62f6e88ca2944..0d9972d320c2ba5b96f7b3569438931795cc48a0 100644
--- a/chrome/test/data/extensions/api_test/lazy_background_page/wait_for_request/background.js
+++ b/chrome/test/data/extensions/api_test/lazy_background_page/wait_for_request/background.js
@@ -15,7 +15,7 @@ function abortRequest() {
window.domAutomationController.send(true);
}
-chrome.experimental.runtime.onInstalled.addListener(function() {
+chrome.runtime.onInstalled.addListener(function() {
chrome.test.getConfig(function(config) {
testServerPort = config.testServer.port;

Powered by Google App Engine
This is Rietveld 408576698