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

Side by Side Diff: chrome/browser/resources/settings/site_settings/site_settings_prefs_browser_proxy.js

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review 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 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 "Site Settings" section to 6 * @fileoverview A helper object used from the "Site Settings" section to
7 * interact with the content settings prefs. 7 * interact with the content settings prefs.
8 */ 8 */
9 9
10 /** 10 /**
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 /** 61 /**
62 * @typedef {{name: string, 62 * @typedef {{name: string,
63 * id: string}} 63 * id: string}}
64 */ 64 */
65 var MediaPickerEntry; 65 var MediaPickerEntry;
66 66
67 /** 67 /**
68 * @typedef {{protocol: string, 68 * @typedef {{protocol: string,
69 * spec: string}} 69 * spec: string}}
70 */ 70 */
71 var ProtocolHandlerEntry; 71 var ProtocolHandlerEntry;
72 72
73 /** 73 /**
74 * @typedef {{name: string, 74 * @typedef {{name: string,
75 * product-id: Number, 75 * product-id: Number,
76 * serial-number: string, 76 * serial-number: string,
77 * vendor-id: Number}} 77 * vendor-id: Number}}
78 */ 78 */
79 var UsbDeviceDetails; 79 var UsbDeviceDetails;
80 80
81 /** 81 /**
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 removeZoomLevel: function(host) { 426 removeZoomLevel: function(host) {
427 chrome.send('removeZoomLevel', [host]); 427 chrome.send('removeZoomLevel', [host]);
428 }, 428 },
429 }; 429 };
430 430
431 return { 431 return {
432 SiteSettingsPrefsBrowserProxy: SiteSettingsPrefsBrowserProxy, 432 SiteSettingsPrefsBrowserProxy: SiteSettingsPrefsBrowserProxy,
433 SiteSettingsPrefsBrowserProxyImpl: SiteSettingsPrefsBrowserProxyImpl, 433 SiteSettingsPrefsBrowserProxyImpl: SiteSettingsPrefsBrowserProxyImpl,
434 }; 434 };
435 }); 435 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698