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

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

Issue 1240573012: Extension syncing: Introduce a NeedsSync pref (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ext_sync_uninstall
Patch Set: (b); hackfix sync_integration_tests 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_data.cc
diff --git a/chrome/browser/extensions/extension_sync_data.cc b/chrome/browser/extensions/extension_sync_data.cc
index bacf39c721a453894a7757ee9b4b7c0600e86617..6404e8b61ca690b75f3cea42094aaf779b885019 100644
--- a/chrome/browser/extensions/extension_sync_data.cc
+++ b/chrome/browser/extensions/extension_sync_data.cc
@@ -202,7 +202,7 @@ void ExtensionSyncData::ToAppSpecifics(sync_pb::AppSpecifics* specifics) const {
static_cast<sync_pb::AppSpecifics::LaunchType>(launch_type_);
// The corresponding validation of this value during processing of an
- // AppSyncData is in ExtensionSyncService::ProcessAppSyncData.
+ // ExtensionSyncData is in ExtensionSyncService::ApplySyncData.
if (launch_type_ >= LAUNCH_TYPE_FIRST && launch_type_ < NUM_LAUNCH_TYPES &&
sync_pb::AppSpecifics_LaunchType_IsValid(sync_launch_type)) {
specifics->set_launch_type(sync_launch_type);

Powered by Google App Engine
This is Rietveld 408576698