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

Unified Diff: chrome/browser/resources/options/cookies_list.js

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/cookies_list.js
diff --git a/chrome/browser/resources/options/cookies_list.js b/chrome/browser/resources/options/cookies_list.js
index c20ac63c158468cd28ea621dd34ea17caccca89e..e79fb3e65e1da41d546ca6e90ec68b2c08a7d850 100644
--- a/chrome/browser/resources/options/cookies_list.js
+++ b/chrome/browser/resources/options/cookies_list.js
@@ -37,9 +37,9 @@ cr.define('options', function() {
'file_system': [['origin', 'label_file_system_origin'],
['persistent', 'label_file_system_persistent_usage'],
['temporary', 'label_file_system_temporary_usage']],
- 'server_bound_cert': [['serverId', 'label_server_bound_cert_server_id'],
- ['certType', 'label_server_bound_cert_type'],
- ['created', 'label_server_bound_cert_created']],
+ 'channel_id': [['serverId', 'label_channel_id_server_id'],
+ ['certType', 'label_channel_id_type'],
+ ['created', 'label_channel_id_created']],
wtc 2014/07/30 04:56:52 Fix the indentation of lines 41-42. (I can take ca
'flash_lso': [['domain', 'label_cookie_domain']],
};
@@ -246,7 +246,7 @@ cr.define('options', function() {
appCache: false,
indexedDb: false,
fileSystem: false,
- serverBoundCerts: 0,
+ channelIDs: 0,
};
if (this.origin)
this.origin.collectSummaryInfo(info);
@@ -264,8 +264,8 @@ cr.define('options', function() {
list.push(loadTimeData.getString('cookie_app_cache'));
if (info.fileSystem)
list.push(loadTimeData.getString('cookie_file_system'));
- if (info.serverBoundCerts)
- list.push(loadTimeData.getString('cookie_server_bound_cert'));
+ if (info.channelIDs)
+ list.push(loadTimeData.getString('cookie_channel_id'));
if (info.flashLSO)
list.push(loadTimeData.getString('cookie_flash_lso'));
@@ -480,8 +480,8 @@ cr.define('options', function() {
info.fileSystem = true;
} else if (this.data.type == 'quota') {
info.quota = this.data;
- } else if (this.data.type == 'server_bound_cert') {
- info.serverBoundCerts++;
+ } else if (this.data.type == 'channel_id') {
+ info.channelIDs++;
} else if (this.data.type == 'flash_lso') {
info.flashLSO = true;
}

Powered by Google App Engine
This is Rietveld 408576698