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

Unified Diff: chrome/test/data/extensions/api_test/processes/onupdated/background.js

Issue 22584002: Move processes API to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased again Created 7 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/test/data/extensions/api_test/processes/onupdated/background.js
diff --git a/chrome/test/data/extensions/api_test/processes/onupdated/background.js b/chrome/test/data/extensions/api_test/processes/onupdated/background.js
index 9de2772e440f1b53001c512fa5048c99679b5808..7008fc2730cf64ab53bb5d65362e8b8c2f78d6d7 100644
--- a/chrome/test/data/extensions/api_test/processes/onupdated/background.js
+++ b/chrome/test/data/extensions/api_test/processes/onupdated/background.js
@@ -4,13 +4,13 @@
// Add a simple listener to onUpdated to ensure it does not conflict with the
// task manager.
-chrome.experimental.processes.onUpdated.addListener(function(processes) {
+chrome.processes.onUpdated.addListener(function(processes) {
console.log("Received update.");
});
// Add a second listener to onUpdated to ensure the task manager only hears
// about one extension listener per process.
-chrome.experimental.processes.onUpdated.addListener(function(processes) {
+chrome.processes.onUpdated.addListener(function(processes) {
console.log("Second listener received update.");
});

Powered by Google App Engine
This is Rietveld 408576698