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

Unified Diff: chrome/browser/sync/glue/autofill_change_processor.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/sync/glue/autofill_change_processor.cc
diff --git a/chrome/browser/sync/glue/autofill_change_processor.cc b/chrome/browser/sync/glue/autofill_change_processor.cc
index eed58fcb4798e782f771147eaadec84e00ef70d0..9191166467f8e75b368883df66fa3080947fdd2d 100644
--- a/chrome/browser/sync/glue/autofill_change_processor.cc
+++ b/chrome/browser/sync/glue/autofill_change_processor.cc
@@ -7,9 +7,9 @@
#include <string>
#include <vector>
+#include "base/guid.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
-#include "chrome/browser/guid.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/autofill/personal_data_manager.h"
#include "chrome/browser/sync/glue/autofill_change_processor2.h"
@@ -338,7 +338,7 @@ void AutofillChangeProcessor::ApplySyncAutofillProfileChange(
switch (action) {
case sync_api::SyncManager::ChangeRecord::ACTION_ADD: {
- std::string guid(guid::GenerateGUID());
+ std::string guid(base::GenerateGUID());
scoped_ptr<AutoFillProfile> p(new AutoFillProfile);
p->set_guid(guid);
AutofillModelAssociator::FillProfileWithServerData(p.get(),

Powered by Google App Engine
This is Rietveld 408576698