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

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: Devlin's comments 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..4ce93eb1ca03e6affaa1c2841c0b8d8a53e85d21
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/processes/onupdated_with_memory/background.js
@@ -0,0 +1,11 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
Devlin 2016/03/08 21:27:23 no (c)
afakhry 2016/03/09 02:10:14 Done.
+// 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.");
Devlin 2016/03/08 21:27:22 Should we check at all that we did receive process
afakhry 2016/03/09 02:10:14 Yes this is already part of the test here https://
+});
+
+chrome.test.sendMessage("ready");

Powered by Google App Engine
This is Rietveld 408576698