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

Unified Diff: nss_util.cc

Issue 6793055: [login_manager] Allow new owner keys to be pushed with StorePolicy (Closed) Base URL: http://git.chromium.org/git/login_manager.git@master
Patch Set: remove some debugging code Created 9 years, 9 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
« no previous file with comments | « nss_util.h ('k') | owner_key.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss_util.cc
diff --git a/nss_util.cc b/nss_util.cc
index 1f2f963f9ebd36e560c795881e6d1f9e087ed3ab..d87e9b2b21b1da30579718bd45a178271c8fe239 100644
--- a/nss_util.cc
+++ b/nss_util.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -66,7 +66,7 @@ NssUtil* NssUtil::Create() {
}
// static
-void NssUtil::KeyFromBuffer(const std::string& buf, std::vector<uint8>* out) {
+void NssUtil::BlobFromBuffer(const std::string& buf, std::vector<uint8>* out) {
out->resize(buf.length());
if (out->size() == 0)
return;
« no previous file with comments | « nss_util.h ('k') | owner_key.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698