| 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 // This structure maps the various cookie type names from C++ (hence the | 5 // This structure maps the various cookie type names from C++ (hence the |
| 6 // underscores) to arrays of the different types of data each has, along with | 6 // underscores) to arrays of the different types of data each has, along with |
| 7 // the i18n name for the description of that data type. | 7 // the i18n name for the description of that data type. |
| 8 // This structure serves three purposes: | 8 // This structure serves three purposes: |
| 9 // 1) to list what subset of the cookie data we want to show in the UI. | 9 // 1) to list what subset of the cookie data we want to show in the UI. |
| 10 // 2) What order to show it in. | 10 // 2) What order to show it in. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'channel_id': [['serverId', 'channelIdServerId'], | 38 'channel_id': [['serverId', 'channelIdServerId'], |
| 39 ['certType', 'channelIdType'], | 39 ['certType', 'channelIdType'], |
| 40 ['created', 'channelIdCreated']], | 40 ['created', 'channelIdCreated']], |
| 41 'service_worker': [['origin', 'serviceWorkerOrigin'], | 41 'service_worker': [['origin', 'serviceWorkerOrigin'], |
| 42 ['size', 'serviceWorkerSize'], | 42 ['size', 'serviceWorkerSize'], |
| 43 ['scopes', 'serviceWorkerScopes']], | 43 ['scopes', 'serviceWorkerScopes']], |
| 44 'cache_storage': [['origin', 'cacheStorageOrigin'], | 44 'cache_storage': [['origin', 'cacheStorageOrigin'], |
| 45 ['size', 'cacheStorageSize'], | 45 ['size', 'cacheStorageSize'], |
| 46 ['modified', 'cacheStorageLastModified']], | 46 ['modified', 'cacheStorageLastModified']], |
| 47 'flash_lso': [['domain', 'cookieDomain']], | 47 'flash_lso': [['domain', 'cookieDomain']], |
| 48 'media_license': [['origin', 'mediaLicenseOrigin'], |
| 49 ['size', 'mediaLicenseSize'], |
| 50 ['modified', 'mediaLicenseLastModified']], |
| 48 }; | 51 }; |
| OLD | NEW |