Popular sites on the NTP: check that experiment group StartsWith (rather than IS...
[chromium-blink-merge.git] / chrome / browser / android / metrics / variations_session.cc
blob068246fea4b50c428b79dfff9ba677d83323b513
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/android/metrics/variations_session.h"
7 #include "base/android/jni_string.h"
8 #include "chrome/browser/browser_process.h"
9 #include "components/variations/service/variations_service.h"
10 #include "jni/VariationsSession_jni.h"
12 namespace {
14 // Tracks whether VariationsService::OnAppEnterForeground() has been called
15 // previously, in order to set the restrict mode param before the first call.
16 bool g_on_app_enter_foreground_called = false;
18 } // namespace
20 static void StartVariationsSession(
21 JNIEnv* env,
22 const JavaParamRef<jobject>& obj,
23 const JavaParamRef<jstring>& jrestrict_mode) {
24 DCHECK(g_browser_process);
26 variations::VariationsService* variations_service =
27 g_browser_process->variations_service();
28 // Triggers an OnAppEnterForeground on the VariationsService. This may fetch
29 // a new seed.
30 if (variations_service) {
31 std::string restrict_mode =
32 base::android::ConvertJavaStringToUTF8(env, jrestrict_mode);
33 if (!restrict_mode.empty() && !g_on_app_enter_foreground_called)
34 variations_service->SetRestrictMode(restrict_mode);
35 variations_service->OnAppEnterForeground();
36 g_on_app_enter_foreground_called = true;
40 namespace chrome {
41 namespace android {
43 // Register native methods
44 bool RegisterVariationsSession(JNIEnv* env) { return RegisterNativesImpl(env); }
46 } // namespace android
47 } // namespace chrome