Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Unified Diff: content/common/android/linker/linker_jni.cc

Issue 141533006: [Android] Move the java content/ package to content_public/ to start the split. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small fixes and findbugs line update Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/device_orientation/data_fetcher_impl_android.h ('k') | content/content.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/android/linker/linker_jni.cc
diff --git a/content/common/android/linker/linker_jni.cc b/content/common/android/linker/linker_jni.cc
index 7db9fea48e2cc05baf353c4b6e623f8beb093003..be19b925b5382a9e7f53f89b9cf72a40cdfa0734 100644
--- a/content/common/android/linker/linker_jni.cc
+++ b/content/common/android/linker/linker_jni.cc
@@ -154,7 +154,7 @@ struct LibInfo_class {
bool Init(JNIEnv* env) {
jclass clazz;
if (!InitClassReference(
- env, "org/chromium/content/app/Linker$LibInfo", &clazz)) {
+ env, "org/chromium/content_public/app/Linker$LibInfo", &clazz)) {
return false;
}
@@ -387,7 +387,7 @@ const JNINativeMethod kNativeMethods[] = {
"("
"Ljava/lang/String;"
"J"
- "Lorg/chromium/content/app/Linker$LibInfo;"
+ "Lorg/chromium/content_public/app/Linker$LibInfo;"
")"
"Z",
reinterpret_cast<void*>(&LoadLibrary)},
@@ -395,14 +395,14 @@ const JNINativeMethod kNativeMethods[] = {
"("
"Ljava/lang/String;"
"J"
- "Lorg/chromium/content/app/Linker$LibInfo;"
+ "Lorg/chromium/content_public/app/Linker$LibInfo;"
")"
"Z",
reinterpret_cast<void*>(&CreateSharedRelro)},
{"nativeUseSharedRelro",
"("
"Ljava/lang/String;"
- "Lorg/chromium/content/app/Linker$LibInfo;"
+ "Lorg/chromium/content_public/app/Linker$LibInfo;"
")"
"Z",
reinterpret_cast<void*>(&UseSharedRelro)},
@@ -434,7 +434,7 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved) {
// Register native methods.
jclass linker_class;
if (!InitClassReference(
- env, "org/chromium/content/app/Linker", &linker_class))
+ env, "org/chromium/content_public/app/Linker", &linker_class))
return -1;
LOG_INFO("%s: Registering native methods", __FUNCTION__);
« no previous file with comments | « content/browser/device_orientation/data_fetcher_impl_android.h ('k') | content/content.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698