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

Unified Diff: chrome/browser/autofill/autofill_profile.cc

Issue 5849001: Move GUID utils to src/chrome/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 10 years 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/autofill/autofill_profile.cc
diff --git a/chrome/browser/autofill/autofill_profile.cc b/chrome/browser/autofill/autofill_profile.cc
index 388b2192bb1b9e84891f724c551d28e32a40759c..52acb899248b1360654a47e3b64107efe8907e9e 100644
--- a/chrome/browser/autofill/autofill_profile.cc
+++ b/chrome/browser/autofill/autofill_profile.cc
@@ -11,6 +11,7 @@
#include <vector>
#include "app/l10n_util.h"
+#include "base/guid.h"
#include "base/stl_util-inl.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autofill/address.h"
@@ -19,7 +20,6 @@
#include "chrome/browser/autofill/fax_number.h"
#include "chrome/browser/autofill/home_address.h"
#include "chrome/browser/autofill/home_phone_number.h"
-#include "chrome/browser/guid.h"
#include "grit/generated_resources.h"
namespace {
@@ -39,7 +39,7 @@ AutoFillProfile::AutoFillProfile(const std::string& guid)
}
AutoFillProfile::AutoFillProfile()
- : guid_(guid::GenerateGUID()) {
+ : guid_(base::GenerateGUID()) {
InitPersonalInfo(&personal_info_);
}

Powered by Google App Engine
This is Rietveld 408576698