| 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");
|
|
|