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

Unified Diff: chrome/browser/sync/profile_sync_service_android.cc

Issue 1335213002: [Sync] Remove LimitSyncPassphrasePrompt experiment check from PSSA. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove experiment entirely. Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/profile_sync_service_android.cc
diff --git a/chrome/browser/sync/profile_sync_service_android.cc b/chrome/browser/sync/profile_sync_service_android.cc
index be0cb5f40c3930a15837d6c774ecd8da5ec1b0af..4e9e6348ffc259d3eb3445e09f827e3b8ccfbf12 100644
--- a/chrome/browser/sync/profile_sync_service_android.cc
+++ b/chrome/browser/sync/profile_sync_service_android.cc
@@ -12,7 +12,6 @@
#include "base/json/json_writer.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
-#include "base/metrics/field_trial.h"
#include "base/prefs/pref_service.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
@@ -114,10 +113,6 @@ void ProfileSyncServiceAndroid::OnStateChanged() {
jboolean ProfileSyncServiceAndroid::IsPassphrasePrompted(JNIEnv* env,
jobject obj) {
- const std::string group_name =
- base::FieldTrialList::FindFullName("LimitSyncPassphrasePrompt");
- if (group_name != "Enabled")
- return false;
return sync_prefs_->IsPassphrasePrompted();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698