| Index: chrome/browser/sync/test/integration/single_client_apps_sync_test.cc
|
| ===================================================================
|
| --- chrome/browser/sync/test/integration/single_client_apps_sync_test.cc (revision 170888)
|
| +++ chrome/browser/sync/test/integration/single_client_apps_sync_test.cc (working copy)
|
| @@ -3,16 +3,13 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/basictypes.h"
|
| -#include "base/command_line.h"
|
| #include "chrome/browser/sync/profile_sync_service_harness.h"
|
| #include "chrome/browser/sync/test/integration/apps_helper.h"
|
| #include "chrome/browser/sync/test/integration/sync_test.h"
|
| -#include "chrome/common/chrome_switches.h"
|
|
|
| using apps_helper::AllProfilesHaveSameAppsAsVerifier;
|
| using apps_helper::InstallApp;
|
| using apps_helper::InstallPlatformApp;
|
| -using apps_helper::WaitForPlatformAppsToUnload;
|
|
|
| class SingleClientAppsSyncTest : public SyncTest {
|
| public:
|
| @@ -20,14 +17,6 @@
|
|
|
| virtual ~SingleClientAppsSyncTest() {}
|
|
|
| - protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| - SyncTest::SetUpCommandLine(command_line);
|
| - // Make event pages get suspended quicker.
|
| - command_line->AppendSwitchASCII(switches::kEventPageIdleTime, "1");
|
| - command_line->AppendSwitchASCII(switches::kEventPageUnloadingTime, "1");
|
| - }
|
| -
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(SingleClientAppsSyncTest);
|
| };
|
| @@ -64,8 +53,6 @@
|
| ASSERT_TRUE(SetupSync());
|
|
|
| ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier());
|
| -
|
| - WaitForPlatformAppsToUnload();
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(SingleClientAppsSyncTest, InstallSomeLegacyApps) {
|
| @@ -96,8 +83,6 @@
|
| "Waiting for app changes."));
|
|
|
| ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier());
|
| -
|
| - WaitForPlatformAppsToUnload();
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(SingleClientAppsSyncTest, InstallSomeApps) {
|
| @@ -121,6 +106,4 @@
|
| "Waiting for app changes."));
|
|
|
| ASSERT_TRUE(AllProfilesHaveSameAppsAsVerifier());
|
| -
|
| - WaitForPlatformAppsToUnload();
|
| }
|
|
|