Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / base / android / cpu_features.cc
blobc139b7851a1e6ff381a587f82f07898d3cc93932
1 // Copyright (c) 2012 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 <cpu-features.h>
7 #include "base/android/jni_android.h"
8 #include "jni/CpuFeatures_jni.h"
10 namespace base {
11 namespace android {
13 jint GetCoreCount(JNIEnv*, const JavaParamRef<jclass>&) {
14 return android_getCpuCount();
17 jlong GetCpuFeatures(JNIEnv*, const JavaParamRef<jclass>&) {
18 return android_getCpuFeatures();
21 bool RegisterCpuFeatures(JNIEnv* env) {
22 return RegisterNativesImpl(env);
25 } // namespace android
26 } // namespace base