Index: chrome/browser/autofill/personal_data_manager_mac.mm |
diff --git a/chrome/browser/autofill/personal_data_manager_mac.mm b/chrome/browser/autofill/personal_data_manager_mac.mm |
index ea36e60217eb59deef036ab08706c5bb47ab4fff..3a247ce5668bdea8513846056a6a8c457f5b8661 100644 |
--- a/chrome/browser/autofill/personal_data_manager_mac.mm |
+++ b/chrome/browser/autofill/personal_data_manager_mac.mm |
@@ -9,6 +9,7 @@ |
#import <AddressBook/AddressBook.h> |
#include "base/format_macros.h" |
+#include "base/guid.h" |
#include "base/logging.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/scoped_vector.h" |
@@ -16,7 +17,6 @@ |
#include "base/sys_string_conversions.h" |
#include "chrome/browser/autofill/autofill_profile.h" |
#include "chrome/browser/autofill/phone_number.h" |
-#include "chrome/common/guid.h" |
#include "grit/generated_resources.h" |
#include "ui/base/l10n/l10n_util_mac.h" |
@@ -107,7 +107,7 @@ void AuxiliaryProfilesImpl::GetAddressBookMeCard() { |
DCHECK_EQ(kGUIDLength, guid.size()); |
scoped_ptr<AutofillProfile> profile(new AutofillProfile(guid)); |
- DCHECK(guid::IsValidGUID(profile->guid())); |
+ DCHECK(base::IsValidGUID(profile->guid())); |
// Fill in name and company information. |
GetAddressBookNames(me, addressLabelRaw, profile.get()); |