Add the files created with "svn copy" first.
[chromium-blink-merge.git] / base / android / cpu_features.cc
blob6a1869534b0d0c493b78682d87d71ad52a02b87f
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*, jclass) {
14 return android_getCpuCount();
17 jlong GetCpuFeatures(JNIEnv*, jclass) {
18 return android_getCpuFeatures();
21 bool RegisterCpuFeatures(JNIEnv* env) {
22 return RegisterNativesImpl(env);
25 } // namespace android
26 } // namespace base