| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "content/browser/renderer_host/java/java_method.h" | 5 #include "content/browser/renderer_host/java/java_method.h" |
| 6 | 6 |
| 7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "base/android/jni_string.h" | 8 #include "base/android/jni_string.h" |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| 11 #include "base/strings/string_util.h" // For ReplaceSubstringsAfterOffset | 11 #include "base/strings/string_util.h" // For ReplaceSubstringsAfterOffset |
| 12 #include "content/browser/renderer_host/java/jni_helper.h" |
| 12 | 13 |
| 13 using base::android::AttachCurrentThread; | 14 using base::android::AttachCurrentThread; |
| 14 using base::android::ConvertJavaStringToUTF8; | 15 using base::android::ConvertJavaStringToUTF8; |
| 15 using base::android::GetClass; | 16 using base::android::GetClass; |
| 16 using base::android::GetMethodIDFromClassName; | |
| 17 using base::android::MethodID; | 17 using base::android::MethodID; |
| 18 using base::android::ScopedJavaGlobalRef; | 18 using base::android::ScopedJavaGlobalRef; |
| 19 using base::android::ScopedJavaLocalRef; | 19 using base::android::ScopedJavaLocalRef; |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 const char kGetName[] = "getName"; | 24 const char kGetName[] = "getName"; |
| 25 const char kGetDeclaringClass[] = "getDeclaringClass"; | 25 const char kGetDeclaringClass[] = "getDeclaringClass"; |
| 26 const char kGetModifiers[] = "getModifiers"; | 26 const char kGetModifiers[] = "getModifiers"; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 kReturningJavaLangClass)))); | 228 kReturningJavaLangClass)))); |
| 229 id_ = is_static ? | 229 id_ = is_static ? |
| 230 MethodID::Get<MethodID::TYPE_STATIC>( | 230 MethodID::Get<MethodID::TYPE_STATIC>( |
| 231 env, declaring_class.obj(), name_.c_str(), signature.c_str()) : | 231 env, declaring_class.obj(), name_.c_str(), signature.c_str()) : |
| 232 MethodID::Get<MethodID::TYPE_INSTANCE>( | 232 MethodID::Get<MethodID::TYPE_INSTANCE>( |
| 233 env, declaring_class.obj(), name_.c_str(), signature.c_str()); | 233 env, declaring_class.obj(), name_.c_str(), signature.c_str()); |
| 234 java_method_.Reset(); | 234 java_method_.Reset(); |
| 235 } | 235 } |
| 236 | 236 |
| 237 } // namespace content | 237 } // namespace content |
| OLD | NEW |