| Index: chrome/browser/sync/test/integration/sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc
|
| index e3355f50dbb0f3854362193f6a26ed685c619744..9f79709747d0b0a977b9657ea15c5bcab960b0df 100644
|
| --- a/chrome/browser/sync/test/integration/sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/sync_test.cc
|
| @@ -75,6 +75,10 @@
|
| #include "sync/test/fake_server/fake_server_network_resources.h"
|
| #include "url/gurl.h"
|
|
|
| +#if defined(OS_CHROMEOS)
|
| +#include "chromeos/chromeos_switches.h"
|
| +#endif
|
| +
|
| using content::BrowserThread;
|
| using invalidation::InvalidationServiceFactory;
|
|
|
| @@ -242,6 +246,10 @@ void SyncTest::TearDown() {
|
| void SyncTest::SetUpCommandLine(base::CommandLine* cl) {
|
| AddTestSwitches(cl);
|
| AddOptionalTypesToCommandLine(cl);
|
| +
|
| +#if defined(OS_CHROMEOS)
|
| + cl->AppendSwitch(chromeos::switches::kIgnoreUserProfileMappingForTests);
|
| +#endif
|
| }
|
|
|
| void SyncTest::AddTestSwitches(base::CommandLine* cl) {
|
|
|