// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include #include #include "base/basictypes.h" namespace base { namespace android { // This file is used to: // - document the best practices and guidelines on JNI usage. // - ensure sample_for_tests_jni.h compiles and the functions declared in it // as expected. // // All methods are called directly from Java. See more documentation in // SampleForTests.java. class CPPClass { public: CPPClass(); ~CPPClass(); class InnerClass { public: jdouble MethodOtherP0(JNIEnv* env, jobject obj); }; void Destroy(JNIEnv* env, jobject obj); jint Method(JNIEnv* env, jobject obj); void AddStructB(JNIEnv* env, jobject obj, jobject structb); void IterateAndDoSomethingWithStructB(JNIEnv* env, jobject obj); private: std::map map_; DISALLOW_COPY_AND_ASSIGN(CPPClass); }; } // namespace android } // namespace base