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

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

Issue 1584473004: Migrate ProcessesEventRouter to the new task manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nit. Created 4 years, 9 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_with_memory/background.js
diff --git a/chrome/test/data/extensions/api_test/processes/onupdated_with_memory/background.js b/chrome/test/data/extensions/api_test/processes/onupdated_with_memory/background.js
new file mode 100644
index 0000000000000000000000000000000000000000..66ea6c167c0c01149c51e6419a2cec7abf19edee
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/processes/onupdated_with_memory/background.js
@@ -0,0 +1,11 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Add a simple listener to onUpdatedWithMemory to ensure that the task
+// manager's refresh types are updated correctly.
+chrome.processes.onUpdatedWithMemory.addListener(function(processes) {
+ console.log("Received update with memory.");
+});
+
+chrome.test.sendMessage("ready");

Powered by Google App Engine
This is Rietveld 408576698