Roll src/third_party/WebKit f298044:aa8346d (svn 202628:202629)
[chromium-blink-merge.git] / components / variations / android / component_jni_registrar.cc
blob1af1fd2981ebf403ac2d27c858592058f03f1b9b
1 // Copyright 2014 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 "components/variations/android/component_jni_registrar.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_registrar.h"
9 #include "base/basictypes.h"
10 #include "components/variations/android/variations_associated_data_android.h"
12 namespace variations {
14 namespace android {
16 static base::android::RegistrationMethod kVariationsRegisteredMethods[] = {
17 {"VariationsAssociatedData", RegisterVariationsAssociatedData},
20 bool RegisterVariations(JNIEnv* env) {
21 return base::android::RegisterNativeMethods(
22 env, kVariationsRegisteredMethods,
23 arraysize(kVariationsRegisteredMethods));
26 } // namespace android
28 } // namespace variations