Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: chrome/browser/resources/cleanup_tool/cleanup_browser_proxy.js

Issue 2909503003: WebUI: Enable ESLint rule for missing semicolons. (Closed)
Patch Set: Undo local_ntp changes from this CL. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698