| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "content/browser/renderer_host/java/jni_helper.h" | 5 #include "content/browser/android/java/jni_helper.h" |
| 6 | 6 |
| 7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "base/at_exit.h" | 8 #include "base/at_exit.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 Reset(); | 86 Reset(); |
| 87 jmethodID id3 = GetMethodIDFromClassName(env, kJavaLangObject, kToString, | 87 jmethodID id3 = GetMethodIDFromClassName(env, kJavaLangObject, kToString, |
| 88 kReturningJavaLangString); | 88 kReturningJavaLangString); |
| 89 EXPECT_STREQ(kToString, g_last_method); | 89 EXPECT_STREQ(kToString, g_last_method); |
| 90 EXPECT_STREQ(kReturningJavaLangString, g_last_jni_signature); | 90 EXPECT_STREQ(kReturningJavaLangString, g_last_jni_signature); |
| 91 EXPECT_EQ(g_last_method_id, id3); | 91 EXPECT_EQ(g_last_method_id, id3); |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace content | 94 } // namespace content |
| OLD | NEW |