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

Unified Diff: base/android/jni_generator/jni_generator.py

Issue 12094008: Bugfix: to add missing prefix for return type from javap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing spaces. Created 7 years, 10 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 | « no previous file | base/android/jni_generator/jni_generator_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/jni_generator/jni_generator.py
diff --git a/base/android/jni_generator/jni_generator.py b/base/android/jni_generator/jni_generator.py
index 60d724252660d8ec01cec18e9904e45f6fd82cdb..79a2096a0b365168a8daf1cb21ef09ea1d399737 100755
--- a/base/android/jni_generator/jni_generator.py
+++ b/base/android/jni_generator/jni_generator.py
@@ -172,7 +172,7 @@ class JniParams(object):
return prefix + pod_param_map[param]
if '/' in param:
# Coming from javap, use the fully qualified param directly.
- return 'L' + param + ';'
+ return prefix + 'L' + param + ';'
for qualified_name in (object_param_list +
[JniParams._fully_qualified_class] +
JniParams._inner_classes):
« no previous file with comments | « no previous file | base/android/jni_generator/jni_generator_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698