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

Unified Diff: chrome/browser/autofill/autofill_profile_unittest.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_unittest.cc
diff --git a/chrome/browser/autofill/autofill_profile_unittest.cc b/chrome/browser/autofill/autofill_profile_unittest.cc
index f3fd1e588da80afa1813262765accb59c266497f..b0a105a5181c6435e1991b7cfff92d6532ed3057 100644
--- a/chrome/browser/autofill/autofill_profile_unittest.cc
+++ b/chrome/browser/autofill/autofill_profile_unittest.cc
@@ -3,13 +3,13 @@
// found in the LICENSE file.
#include "base/basictypes.h"
+#include "base/guid.h"
#include "base/scoped_ptr.h"
#include "base/stl_util-inl.h"
#include "base/string16.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autofill/autofill_common_test.h"
#include "chrome/browser/autofill/autofill_profile.h"
-#include "chrome/browser/guid.h"
#include "grit/generated_resources.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -530,8 +530,8 @@ TEST(AutoFillProfileTest, Compare) {
EXPECT_EQ(0, a.Compare(b));
// GUIDs don't count.
- a.set_guid(guid::GenerateGUID());
- b.set_guid(guid::GenerateGUID());
+ a.set_guid(base::GenerateGUID());
+ b.set_guid(base::GenerateGUID());
EXPECT_EQ(0, a.Compare(b));
// Different values produce non-zero results.

Powered by Google App Engine
This is Rietveld 408576698