diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-18 17:32:27 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-18 17:32:27 +0000 |
commit | 85622cd0710947ec6418ee865fd9687000dd9f82 (patch) | |
tree | cb3a8cdedb5a19c36e8c8a96a5bbc755f6953e80 /chrome/browser/sync/profile_sync_service.h | |
parent | 31a7fb0a3f7bec9db975db7b2526dac9624c0dc5 (diff) | |
download | chromium_src-85622cd0710947ec6418ee865fd9687000dd9f82.zip chromium_src-85622cd0710947ec6418ee865fd9687000dd9f82.tar.gz chromium_src-85622cd0710947ec6418ee865fd9687000dd9f82.tar.bz2 |
sync: make sessions sync v2 work
Summary of work:
- get tests passing with or without --enable-sync-sessions-v2 (unit_tests, browser_tests, sync_integration_tests)
- did not deal with the disabled sessions perf test. requires non-trival changes, and I'm not sure it's worthwhile yet.
- impelement StopSyncing, GetAllSyncData
- fixed a bug discovered by manual testing where the client tag for a tab node was using an invalid tab_node_id on update.
- remove most remaining references to SessionModelAssociator
- ran some manual coverage of backwards compatibility with v1
This patch does add temporary complexity to a few tests, namely WrenchMenuControllerTest and RecentTabsSubMenuModelTest. The goal was to make things work with or without the flag to minimize diffs during rollout, if we have to swap flag values. I'll remove the extra code once SessionModelAssociator is no more.
BUG=98892
Review URL: https://codereview.chromium.org/110583002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241582 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/profile_sync_service.h')
-rw-r--r-- | chrome/browser/sync/profile_sync_service.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h index 7732d0c..23736e6 100644 --- a/chrome/browser/sync/profile_sync_service.h +++ b/chrome/browser/sync/profile_sync_service.h @@ -705,6 +705,8 @@ class ProfileSyncService void OverrideNetworkResourcesForTest( scoped_ptr<syncer::NetworkResources> network_resources); + virtual bool IsSessionsDataTypeControllerRunning() const; + protected: // Helper to configure the priority data types. void ConfigurePriorityDataTypes(); @@ -875,8 +877,6 @@ class ProfileSyncService bool delete_sync_database, UnrecoverableErrorReason reason); - bool IsSessionsDataTypeControllerRunning() const; - // Returns the username (in form of an email address) that should be used in // the credentials. std::string GetEffectiveUsername(); |