| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_ANDROID_JNI_GENERATOR_SAMPLE_FOR_TESTS_H_ |
| 6 #define BASE_ANDROID_JNI_GENERATOR_SAMPLE_FOR_TESTS_H_ |
| 7 |
| 5 #include <jni.h> | 8 #include <jni.h> |
| 6 #include <map> | 9 #include <map> |
| 7 #include <string> | 10 #include <string> |
| 8 | 11 |
| 9 #include "base/android/jni_android.h" | 12 #include "base/android/jni_android.h" |
| 10 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 11 | 14 |
| 12 namespace base { | 15 namespace base { |
| 13 namespace android { | 16 namespace android { |
| 14 | 17 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 41 JNIEnv* env, jobject obj); | 44 JNIEnv* env, jobject obj); |
| 42 | 45 |
| 43 private: | 46 private: |
| 44 std::map<long, std::string> map_; | 47 std::map<long, std::string> map_; |
| 45 | 48 |
| 46 DISALLOW_COPY_AND_ASSIGN(CPPClass); | 49 DISALLOW_COPY_AND_ASSIGN(CPPClass); |
| 47 }; | 50 }; |
| 48 | 51 |
| 49 } // namespace android | 52 } // namespace android |
| 50 } // namespace base | 53 } // namespace base |
| 54 |
| 55 #endif // BASE_ANDROID_JNI_GENERATOR_SAMPLE_FOR_TESTS_H_ |
| OLD | NEW |