| Index: chrome/test/data/extensions/platform_apps/component_reload/background.js
|
| diff --git a/chrome/test/data/extensions/platform_apps/component_reload/background.js b/chrome/test/data/extensions/platform_apps/component_reload/background.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7546bc6177eecd5df487ea1948af0fbce5b85c5d
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/platform_apps/component_reload/background.js
|
| @@ -0,0 +1,8 @@
|
| +// Copyright 2017 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.
|
| +
|
| +chrome.test.sendMessage('Launched', function(response) {
|
| + chrome.test.assertEq('reload', response);
|
| + chrome.runtime.reload();
|
| +});
|
|
|