Chromium Code Reviews| Index: crypto/keychain_mac.cc |
| diff --git a/chrome/browser/keychain_mac.cc b/crypto/keychain_mac.cc |
| similarity index 97% |
| rename from chrome/browser/keychain_mac.cc |
| rename to crypto/keychain_mac.cc |
| index 5640e6b25a25c8aa5110bc8432b80cd293127fb3..e0d4c48abee8378e55144537debe4939731084ff 100644 |
| --- a/chrome/browser/keychain_mac.cc |
| +++ b/crypto/keychain_mac.cc |
| @@ -1,8 +1,10 @@ |
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2012 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. |
| -#include "chrome/browser/keychain_mac.h" |
| +#include "crypto/keychain_mac.h" |
| + |
| +namespace crypto { |
| OSStatus MacKeychain::ItemCopyAttributesAndData( |
| SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info, |
| @@ -107,3 +109,5 @@ void MacKeychain::Free(CFTypeRef ref) const { |
| CFRelease(ref); |
|
Ryan Sleevi
2012/03/16 20:58:37
nit: no braces
akalin
2012/03/17 07:19:44
Done.
|
| } |
| } |
| + |
| +} // namespace crypto |