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

Unified Diff: chrome/browser/password_manager/password_store_mac_internal.h

Issue 9699112: Move *keychain_mac* files to crypto/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: chrome/browser/password_manager/password_store_mac_internal.h
diff --git a/chrome/browser/password_manager/password_store_mac_internal.h b/chrome/browser/password_manager/password_store_mac_internal.h
index c70af276ac88b7b629957ec975fa8db3ee5b5604..5acce82b2cbe5fbaf73a4b556a0c2ba0856f38e5 100644
--- a/chrome/browser/password_manager/password_store_mac_internal.h
+++ b/chrome/browser/password_manager/password_store_mac_internal.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 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.
@@ -12,7 +12,9 @@
#include <vector>
#include "base/time.h"
-#include "chrome/browser/keychain_mac.h"
+#include "crypto/keychain_mac.h"
+
+using crypto::MacKeychain;
// Adapter that wraps a MacKeychain and provides interaction in terms of
// PasswordForms instead of Keychain items.
@@ -21,7 +23,8 @@ class MacKeychainPasswordFormAdapter {
// Creates an adapter for |keychain|. This class does not take ownership of
// |keychain|, so the caller must make sure that the keychain outlives the
// created object.
- explicit MacKeychainPasswordFormAdapter(const MacKeychain* keychain);
+ explicit MacKeychainPasswordFormAdapter(
+ const MacKeychain* keychain);
Ryan Sleevi 2012/03/16 20:58:37 Does this fit on one line?
akalin 2012/03/17 07:19:44 Done.
// Returns PasswordForms for each keychain entry that could be used to fill
// |form|. Caller is responsible for deleting the returned forms.

Powered by Google App Engine
This is Rietveld 408576698