| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 Helper object and related behavior that encapsulate messaging | 6 * @fileoverview Helper object and related behavior that encapsulate messaging |
| 7 * between JS and C++ for interacting with the Chrome Cleanup Tool. | 7 * between JS and C++ for interacting with the Chrome Cleanup Tool. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 }, | 67 }, |
| 68 /** @override */ | 68 /** @override */ |
| 69 startCleanup: function() { | 69 startCleanup: function() { |
| 70 return cr.sendWithPromise('startCleanup'); | 70 return cr.sendWithPromise('startCleanup'); |
| 71 }, | 71 }, |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 return { | 74 return { |
| 75 CleanupBrowserProxy: CleanupBrowserProxy, | 75 CleanupBrowserProxy: CleanupBrowserProxy, |
| 76 CleanupBrowserProxyImpl: CleanupBrowserProxyImpl, | 76 CleanupBrowserProxyImpl: CleanupBrowserProxyImpl, |
| 77 } | 77 }; |
| 78 }); | 78 }); |
| OLD | NEW |