| 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 "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 Loading... |
| 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 Loading... |
| 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 }); |
| OLD | NEW |