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

Unified Diff: chrome/browser/extensions/extension_sync_service.cc

Issue 1240573012: Extension syncing: Introduce a NeedsSync pref (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ext_sync_uninstall
Patch Set: Created 5 years, 5 months 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/extensions/extension_sync_service.cc
diff --git a/chrome/browser/extensions/extension_sync_service.cc b/chrome/browser/extensions/extension_sync_service.cc
index c01cd7a08f0228b385e4a677fd9ca5a6bc7fa8e9..cd86bb2d846eea18d50b3c97dc61f7c45b4c356c 100644
--- a/chrome/browser/extensions/extension_sync_service.cc
+++ b/chrome/browser/extensions/extension_sync_service.cc
@@ -35,7 +35,6 @@ using extensions::ExtensionPrefs;
using extensions::ExtensionRegistry;
using extensions::ExtensionSet;
using extensions::ExtensionSyncData;
-using extensions::PendingEnables;
using extensions::SyncBundle;
namespace {
@@ -79,6 +78,15 @@ bool IsCorrectSyncType(const Extension& extension, syncer::ModelType type) {
(type == syncer::APPS && extension.is_app());
}
+syncer::SyncDataList ToSyncerSyncDataList(
+ const std::vector<ExtensionSyncData>& data) {
+ syncer::SyncDataList result;
+ result.reserve(data.size());
not at google - send to devlin 2015/07/15 20:27:57 You should be able to do this in the constructor;
Marc Treib 2015/07/16 09:22:34 Actually no, that would do something different: It
+ for (const ExtensionSyncData& item : data)
+ result.push_back(item.GetSyncData());
+ return result;
+}
+
} // namespace
ExtensionSyncService::ExtensionSyncService(Profile* profile,
@@ -88,15 +96,7 @@ ExtensionSyncService::ExtensionSyncService(Profile* profile,
extension_prefs_(extension_prefs),
extension_service_(extension_service),
app_sync_bundle_(this),
- extension_sync_bundle_(this),
- pending_app_enables_(make_scoped_ptr(new sync_driver::SyncPrefs(
- extension_prefs_->pref_service())),
- &app_sync_bundle_,
- syncer::APPS),
- pending_extension_enables_(make_scoped_ptr(new sync_driver::SyncPrefs(
- extension_prefs_->pref_service())),
- &extension_sync_bundle_,
- syncer::EXTENSIONS) {
+ extension_sync_bundle_(this) {
SetSyncStartFlare(sync_start_util::GetFlareForSyncableService(
profile_->GetPath()));
@@ -134,22 +134,6 @@ void ExtensionSyncService::SyncUninstallExtension(
bundle->PushSyncDeletion(id, CreateSyncData(extension).GetSyncData());
}
-void ExtensionSyncService::SyncEnableExtension(const Extension& extension) {
- // Syncing may not have started yet, so handle pending enables.
- if (extensions::util::ShouldSync(&extension, profile_))
- GetPendingEnables(extension.is_app())->Add(extension.id());
-
- SyncExtensionChangeIfNeeded(extension);
-}
-
-void ExtensionSyncService::SyncDisableExtension(const Extension& extension) {
- // Syncing may not have started yet, so handle pending enables.
- if (extensions::util::ShouldSync(&extension, profile_))
- GetPendingEnables(extension.is_app())->Remove(extension.id());
-
- SyncExtensionChangeIfNeeded(extension);
-}
-
void ExtensionSyncService::SyncExtensionChangeIfNeeded(
const Extension& extension) {
if (!extensions::util::ShouldSync(&extension, profile_))
@@ -158,10 +142,14 @@ void ExtensionSyncService::SyncExtensionChangeIfNeeded(
syncer::ModelType type =
extension.is_app() ? syncer::APPS : syncer::EXTENSIONS;
SyncBundle* bundle = GetSyncBundle(type);
- if (bundle->IsSyncing())
- bundle->PushSyncChangeIfNeeded(extension);
- else if (extension_service_->is_ready() && !flare_.is_null())
+ if (bundle->IsSyncing()) {
+ bundle->PushSyncChange(extension.id(),
+ CreateSyncData(extension).GetSyncData());
+ ExtensionPrefs::Get(profile_)->SetNeedsSync(extension.id(), false);
not at google - send to devlin 2015/07/15 20:27:57 I think this only needs to go at the point when th
Marc Treib 2015/07/16 09:22:34 I think you're right. By the time we get here, the
+ } else if (extension_service_->is_ready() && !flare_.is_null()) {
not at google - send to devlin 2015/07/15 20:27:57 It seems like these 2 cases should be separated.
Marc Treib 2015/07/16 09:22:34 Done.
not at google - send to devlin 2015/07/16 18:25:46 Ok good point. I still think it shouldn't be in an
Marc Treib 2015/07/17 10:24:06 Hm, turns out there's a test (ExtensionServiceTest
+ ExtensionPrefs::Get(profile_)->SetNeedsSync(extension.id(), true);
flare_.Run(type);
+ }
}
syncer::SyncMergeResult ExtensionSyncService::MergeDataAndStartSyncing(
@@ -177,12 +165,14 @@ syncer::SyncMergeResult ExtensionSyncService::MergeDataAndStartSyncing(
bool is_apps = (type == syncer::APPS);
bundle->MergeDataAndStartSyncing(initial_sync_data, sync_processor.Pass());
- GetPendingEnables(is_apps)->OnSyncStarted(extension_service_);
// Process local extensions.
// TODO(yoz): Determine whether pending extensions should be considered too.
// See crbug.com/104399.
- bundle->PushSyncDataList(GetAllSyncData(type));
+ std::vector<ExtensionSyncData> data_list = GetSyncDataList(type);
+ bundle->PushSyncDataList(ToSyncerSyncDataList(data_list));
+ for (const ExtensionSyncData& data : data_list)
+ ExtensionPrefs::Get(profile_)->SetNeedsSync(data.id(), false);
if (is_apps)
extension_prefs_->app_sorting()->FixNTPOrdinalCollisions();
@@ -196,12 +186,7 @@ void ExtensionSyncService::StopSyncing(syncer::ModelType type) {
syncer::SyncDataList ExtensionSyncService::GetAllSyncData(
syncer::ModelType type) const {
- std::vector<ExtensionSyncData> data = GetSyncDataList(type);
- syncer::SyncDataList result;
- result.reserve(data.size());
- for (const ExtensionSyncData& item : data)
- result.push_back(item.GetSyncData());
- return result;
+ return ToSyncerSyncDataList(GetSyncDataList(type));
}
syncer::SyncError ExtensionSyncService::ProcessSyncChanges(
@@ -245,6 +230,12 @@ bool ExtensionSyncService::ApplySyncData(
const ExtensionSyncData& extension_sync_data) {
const std::string& id = extension_sync_data.id();
+ // If the extension has local state that needs to be synced, ignore this
+ // change (we assume the local state is more recent). This should only ever
+ // happen during MergeDataAndStartSyncing.
+ if (ExtensionPrefs::Get(profile_)->NeedsSync(id))
not at google - send to devlin 2015/07/15 20:27:57 I don't think this is the right place for this. In
Marc Treib 2015/07/16 09:22:34 That's two different things. What MergeDataAndStar
not at google - send to devlin 2015/07/16 18:25:46 In a way it's an optimisation, but only because co
Marc Treib 2015/07/17 10:24:06 Still "just" an optimization ;P Anyway, done in PS
+ return true;
+
if (extension_sync_data.is_app()) {
if (extension_sync_data.app_launch_ordinal().IsValid() &&
extension_sync_data.page_ordinal().IsValid()) {
@@ -345,12 +336,6 @@ void ExtensionSyncService::SetSyncStartFlare(
flare_ = flare;
}
-bool ExtensionSyncService::IsPendingEnable(
- const std::string& extension_id) const {
- return pending_app_enables_.Contains(extension_id) ||
- pending_extension_enables_.Contains(extension_id);
-}
-
SyncBundle* ExtensionSyncService::GetSyncBundle(syncer::ModelType type) {
return const_cast<SyncBundle*>(
const_cast<const ExtensionSyncService&>(*this).GetSyncBundle(type));
@@ -361,13 +346,10 @@ const SyncBundle* ExtensionSyncService::GetSyncBundle(
return (type == syncer::APPS) ? &app_sync_bundle_ : &extension_sync_bundle_;
}
-extensions::PendingEnables* ExtensionSyncService::GetPendingEnables(
- bool is_apps) {
- return is_apps ? &pending_app_enables_ : &pending_extension_enables_;
-}
-
std::vector<ExtensionSyncData> ExtensionSyncService::GetSyncDataList(
syncer::ModelType type) const {
+ // Collect the local state. FillSyncDataList will filter out extensions for
+ // which we have pending data that should be used instead.
ExtensionRegistry* registry = ExtensionRegistry::Get(profile_);
std::vector<ExtensionSyncData> extension_sync_list;
FillSyncDataList(registry->enabled_extensions(), type, &extension_sync_list);
@@ -375,6 +357,8 @@ std::vector<ExtensionSyncData> ExtensionSyncService::GetSyncDataList(
FillSyncDataList(
registry->terminated_extensions(), type, &extension_sync_list);
+ // Add pending data (where the local extension is either not installed yet or
+ // outdated).
std::vector<ExtensionSyncData> pending_extensions =
GetSyncBundle(type)->GetPendingData();
extension_sync_list.insert(extension_sync_list.begin(),
@@ -392,7 +376,8 @@ void ExtensionSyncService::FillSyncDataList(
for (const scoped_refptr<const Extension>& extension : extensions) {
if (IsCorrectSyncType(*extension, type) &&
extensions::util::ShouldSync(extension.get(), profile_) &&
- bundle->ShouldIncludeInLocalSyncDataList(*extension)) {
+ bundle->IsSyncing() &&
not at google - send to devlin 2015/07/15 20:27:57 Should this be a (D)CHECK?
Marc Treib 2015/07/16 09:22:34 Not sure - can GetAllSyncData (from syncer::Syncab
not at google - send to devlin 2015/07/16 18:25:46 Removing SGTM.
Marc Treib 2015/07/17 10:24:06 Done.
+ !bundle->HasPendingExtensionId(extension->id())) {
sync_data_list->push_back(CreateSyncData(*extension));
}
}
@@ -448,7 +433,7 @@ bool ExtensionSyncService::ApplyExtensionSyncDataHelper(
extension_service_->GrantPermissionsAndEnableExtension(extension);
else
extension_service_->EnableExtension(id);
- } else if (!IsPendingEnable(id)) {
+ } else {
int disable_reasons = extension_sync_data.disable_reasons();
if (extension_sync_data.remote_install()) {
if (!(disable_reasons & Extension::DISABLE_REMOTE_INSTALL)) {

Powered by Google App Engine
This is Rietveld 408576698