Index: chrome/browser/password_manager/password_store_mac.cc |
=================================================================== |
--- chrome/browser/password_manager/password_store_mac.cc (revision 70358) |
+++ chrome/browser/password_manager/password_store_mac.cc (working copy) |
@@ -11,7 +11,7 @@ |
#include <vector> |
#include "base/logging.h" |
-#include "base/mac_util.h" |
+#include "base/mac/mac_util.h" |
#include "base/message_loop.h" |
#include "base/stl_util-inl.h" |
#include "base/string_util.h" |
@@ -565,7 +565,8 @@ |
password.size(), password.c_str(), &new_item); |
if (result == noErr) { |
- SetKeychainItemCreatorCode(new_item, mac_util::CreatorCodeForApplication()); |
+ SetKeychainItemCreatorCode(new_item, |
+ base::mac::CreatorCodeForApplication()); |
keychain_->Free(new_item); |
} else if (result == errSecDuplicateItem) { |
// If we collide with an existing item, find and update it instead. |
@@ -722,7 +723,7 @@ |
} |
OSType MacKeychainPasswordFormAdapter::CreatorCodeForSearch() { |
- return finds_only_owned_ ? mac_util::CreatorCodeForApplication() : 0; |
+ return finds_only_owned_ ? base::mac::CreatorCodeForApplication() : 0; |
} |
#pragma mark - |