Index: chrome/browser/profile_resetter/automatic_profile_resetter_delegate_unittest.cc |
diff --git a/chrome/browser/profile_resetter/automatic_profile_resetter_delegate_unittest.cc b/chrome/browser/profile_resetter/automatic_profile_resetter_delegate_unittest.cc |
index a72e2fa510f4cc0934a1ab77f65adf840a77d868..38c6476c2817a0322d276dc9c2e499709bf0cdc8 100644 |
--- a/chrome/browser/profile_resetter/automatic_profile_resetter_delegate_unittest.cc |
+++ b/chrome/browser/profile_resetter/automatic_profile_resetter_delegate_unittest.cc |
@@ -21,6 +21,7 @@ |
#include "chrome/app/chrome_command_ids.h" |
#include "chrome/browser/chrome_notification_types.h" |
#include "chrome/browser/extensions/extension_service_unittest.h" |
+#include "chrome/browser/google/google_brand.h" |
#include "chrome/browser/google/google_util.h" |
#include "chrome/browser/profile_resetter/brandcoded_default_settings.h" |
#include "chrome/browser/profile_resetter/profile_reset_global_error.h" |
@@ -441,7 +442,7 @@ TEST_F(AutomaticProfileResetterDelegateTest, |
TEST_F(AutomaticProfileResetterDelegateTest, |
FetchAndWaitOnDefaultSettingsVanilla) { |
- google_util::BrandForTesting scoped_brand_for_testing((std::string())); |
+ google_brand::BrandForTesting scoped_brand_for_testing((std::string())); |
// Expect ready_callback to be called just after empty brandcoded settings |
// are loaded, given this is a vanilla build. Fail if it is not called, or |
@@ -473,7 +474,7 @@ TEST_F(AutomaticProfileResetterDelegateTest, |
TEST_F(AutomaticProfileResetterDelegateTest, |
FetchAndWaitOnDefaultSettingsBranded) { |
- google_util::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
+ google_brand::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
// Expect ready_callback to be called just after the brandcoded settings are |
// downloaded. Fail if it is not called, or called too early. |
@@ -506,7 +507,7 @@ TEST_F(AutomaticProfileResetterDelegateTest, |
TEST_F(AutomaticProfileResetterDelegateTest, |
FetchAndWaitOnDefaultSettingsBrandedFailure) { |
- google_util::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
+ google_brand::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
// Expect ready_callback to be called just after the brandcoded settings have |
// failed to download. Fail if it is not called, or called too early. |
@@ -532,7 +533,7 @@ TEST_F(AutomaticProfileResetterDelegateTest, |
} |
TEST_F(AutomaticProfileResetterDelegateTest, TriggerReset) { |
- google_util::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
+ google_brand::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
PrefService* prefs = profile()->GetPrefs(); |
DCHECK(prefs); |
@@ -551,7 +552,7 @@ TEST_F(AutomaticProfileResetterDelegateTest, TriggerReset) { |
TEST_F(AutomaticProfileResetterDelegateTest, |
TriggerResetWithDefaultSettingsAlreadyLoaded) { |
- google_util::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
+ google_brand::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
PrefService* prefs = profile()->GetPrefs(); |
DCHECK(prefs); |
@@ -573,7 +574,7 @@ TEST_F(AutomaticProfileResetterDelegateTest, |
TEST_F(AutomaticProfileResetterDelegateTest, |
TriggerResetAndSendFeedback) { |
- google_util::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
+ google_brand::BrandForTesting scoped_brand_for_testing(kTestBrandcode); |
PrefService* prefs = profile()->GetPrefs(); |
DCHECK(prefs); |