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

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

Issue 9316086: Fix JavaScript errors in options2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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/options2/cookies_list.js
diff --git a/chrome/browser/resources/options2/cookies_list.js b/chrome/browser/resources/options2/cookies_list.js
index a049fb58e43dc1173de5e42a94e14c69814dfd3d..a0c215a574c565fcfbf8d148da6cf57a6ec9a62b 100644
--- a/chrome/browser/resources/options2/cookies_list.js
+++ b/chrome/browser/resources/options2/cookies_list.js
@@ -12,31 +12,31 @@ cr.define('options', function() {
// underscores) to arrays of the different types of data each has, along with
// the i18n name for the description of that data type.
const cookieInfo = {
- 'cookie': [ ['name', 'label_cookie_name'],
- ['content', 'label_cookie_content'],
- ['domain', 'label_cookie_domain'],
- ['path', 'label_cookie_path'],
- ['sendfor', 'label_cookie_send_for'],
- ['accessibleToScript', 'label_cookie_accessible_to_script'],
- ['created', 'label_cookie_created'],
- ['expires', 'label_cookie_expires'] ],
- 'app_cache': [ ['manifest', 'label_app_cache_manifest'],
- ['size', 'label_local_storage_size'],
- ['created', 'label_cookie_created'],
- ['accessed', 'label_cookie_last_accessed'] ],
- 'database': [ ['name', 'label_cookie_name'],
- ['desc', 'label_webdb_desc'],
+ 'cookie': [['name', 'label_cookie_name'],
+ ['content', 'label_cookie_content'],
+ ['domain', 'label_cookie_domain'],
+ ['path', 'label_cookie_path'],
+ ['sendfor', 'label_cookie_send_for'],
+ ['accessibleToScript', 'label_cookie_accessible_to_script'],
+ ['created', 'label_cookie_created'],
+ ['expires', 'label_cookie_expires']],
+ 'app_cache': [['manifest', 'label_app_cache_manifest'],
['size', 'label_local_storage_size'],
- ['modified', 'label_local_storage_last_modified'] ],
- 'local_storage': [ ['origin', 'label_local_storage_origin'],
- ['size', 'label_local_storage_size'],
- ['modified', 'label_local_storage_last_modified'] ],
- 'indexed_db': [ ['origin', 'label_indexed_db_origin'],
- ['size', 'label_indexed_db_size'],
- ['modified', 'label_indexed_db_last_modified'] ],
- 'file_system': [ ['origin', 'label_file_system_origin'],
- ['persistent', 'label_file_system_persistent_usage' ],
- ['temporary', 'label_file_system_temporary_usage' ] ],
+ ['created', 'label_cookie_created'],
+ ['accessed', 'label_cookie_last_accessed']],
+ 'database': [['name', 'label_cookie_name'],
+ ['desc', 'label_webdb_desc'],
+ ['size', 'label_local_storage_size'],
+ ['modified', 'label_local_storage_last_modified']],
+ 'local_storage': [['origin', 'label_local_storage_origin'],
+ ['size', 'label_local_storage_size'],
+ ['modified', 'label_local_storage_last_modified']],
+ 'indexed_db': [['origin', 'label_indexed_db_origin'],
+ ['size', 'label_indexed_db_size'],
+ ['modified', 'label_indexed_db_last_modified']],
+ 'file_system': [['origin', 'label_file_system_origin'],
+ ['persistent', 'label_file_system_persistent_usage'],
+ ['temporary', 'label_file_system_temporary_usage']],
};
const localStrings = new LocalStrings();

Powered by Google App Engine
This is Rietveld 408576698