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

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

Issue 6155008: DOMUI: Implement the new Fonts and Encoding page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes. Created 9 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/options/certificate_manager.js
diff --git a/chrome/browser/resources/options/certificate_manager.js b/chrome/browser/resources/options/certificate_manager.js
index 02090530a5e55bf18bf97d757d0ad9ecee4b55b1..a225d435b2313fb9b0f7d6b6a8442b5acc0e1b58 100644
--- a/chrome/browser/resources/options/certificate_manager.js
+++ b/chrome/browser/resources/options/certificate_manager.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -40,8 +40,6 @@ cr.define('options', function() {
var data = tree.selectedItem.data;
CertificateEditCaTrustOverlay.show(data.id, data.name);
}
- } else {
csilv 2011/01/11 21:48:43 These console changes weren't mentioned in the des
James Hawkins 2011/01/11 23:45:54 Done.
- console.log('unknown edit button for: ' + id);
}
}
@@ -74,8 +72,6 @@ cr.define('options', function() {
this.importButton.onclick = function(e) {
chrome.send('importCaCertificate', []);
}
- } else {
- console.log('unknown import button for: ' + id);
}
}

Powered by Google App Engine
This is Rietveld 408576698