OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @fileoverview A helper object used from the "Manage search engines" section | 6 * @fileoverview A helper object used from the "Manage search engines" section |
7 * to interact with the browser. | 7 * to interact with the browser. |
8 */ | 8 */ |
9 | 9 |
10 /** | 10 /** |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
129 chrome.send('disableExtension', [extensionId]); | 129 chrome.send('disableExtension', [extensionId]); |
130 }, | 130 }, |
131 | 131 |
132 /** @override */ | 132 /** @override */ |
133 manageExtension: function(extensionId) { | 133 manageExtension: function(extensionId) { |
134 window.location = 'chrome://extensions?id=' + extensionId; | 134 window.location = 'chrome://extensions?id=' + extensionId; |
135 }, | 135 }, |
136 }; | 136 }; |
137 | 137 |
138 return { | 138 return { |
139 SearchEnginesBrowserProxy: SearchEnginesBrowserProxy, | |
tommycli
2016/06/30 21:29:43
no need
| |
139 SearchEnginesBrowserProxyImpl: SearchEnginesBrowserProxyImpl, | 140 SearchEnginesBrowserProxyImpl: SearchEnginesBrowserProxyImpl, |
140 }; | 141 }; |
141 }); | 142 }); |
OLD | NEW |