Chromium Code Reviews| 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"); |