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

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

Issue 2359393002: Adds media license nodes to cookie tree model and cookies view. (Closed)
Patch Set: rebase Created 4 years, 2 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 // 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
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 };
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/cookies_list.js ('k') | chrome/browser/resources/settings/site_settings/cookie_tree_node.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698