Index: chrome/browser/webdata/autofill_profile_syncable_service.cc |
diff --git a/chrome/browser/webdata/autofill_profile_syncable_service.cc b/chrome/browser/webdata/autofill_profile_syncable_service.cc |
index 8b352d53b7d0b2b8b73f4729e540e5ec8a638592..9716f1fdf08916b7ef14b42a58b2c4e7894c21de 100644 |
--- a/chrome/browser/webdata/autofill_profile_syncable_service.cc |
+++ b/chrome/browser/webdata/autofill_profile_syncable_service.cc |
@@ -4,6 +4,7 @@ |
#include "chrome/browser/webdata/autofill_profile_syncable_service.h" |
+#include "base/guid.h" |
#include "base/location.h" |
#include "base/logging.h" |
#include "base/utf_string_conversions.h" |
@@ -14,7 +15,6 @@ |
#include "chrome/browser/webdata/web_data_service.h" |
#include "chrome/browser/webdata/web_database.h" |
#include "chrome/common/chrome_notification_types.h" |
-#include "chrome/common/guid.h" |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/notification_details.h" |
#include "content/public/browser/notification_source.h" |
@@ -315,7 +315,7 @@ void AutofillProfileSyncableService::WriteAutofillProfile( |
sync_pb::AutofillProfileSpecifics* specifics = |
profile_specifics->mutable_autofill_profile(); |
- DCHECK(guid::IsValidGUID(profile.guid())); |
+ DCHECK(base::IsValidGUID(profile.guid())); |
// Reset all multi-valued fields in the protobuf. |
specifics->clear_name_first(); |