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

Side by Side Diff: base/android/jni_generator/jni_generator.py

Issue 10821116: Upstream ChromeHttpAuthHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit fixes Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeHttpAuthHandler.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # TODO (qinmin): Need to refactor this file as base should not know about 6 # TODO (qinmin): Need to refactor this file as base should not know about
7 # higher level concepts. Currently this file has knowledge about higher level 7 # higher level concepts. Currently this file has knowledge about higher level
8 # java classes. 8 # java classes.
9 9
10 """Extracts native methods from a Java file and generates the JNI bindings. 10 """Extracts native methods from a Java file and generates the JNI bindings.
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer$NativeInfoBar', 158 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer$NativeInfoBar',
159 ('Lcom/google/android/apps/chrome/preferences/ChromeNativePreferences$' 159 ('Lcom/google/android/apps/chrome/preferences/ChromeNativePreferences$'
160 'PasswordListObserver'), 160 'PasswordListObserver'),
161 'Lorg/chromium/base/SystemMessageHandler', 161 'Lorg/chromium/base/SystemMessageHandler',
162 'Lorg/chromium/chrome/browser/JSModalDialog', 162 'Lorg/chromium/chrome/browser/JSModalDialog',
163 'Lorg/chromium/chrome/browser/ProcessUtils', 163 'Lorg/chromium/chrome/browser/ProcessUtils',
164 'Lorg/chromium/chrome/browser/SelectFileDialog', 164 'Lorg/chromium/chrome/browser/SelectFileDialog',
165 'Lorg/chromium/content/browser/ContentVideoView', 165 'Lorg/chromium/content/browser/ContentVideoView',
166 'Lorg/chromium/content/browser/ContentViewClient', 166 'Lorg/chromium/content/browser/ContentViewClient',
167 'Lorg/chromium/content/browser/ContentViewCore', 167 'Lorg/chromium/content/browser/ContentViewCore',
168 'Lorg/chromium/content/browser/ContentHttpAuthHandler',
169 'Lorg/chromium/content/browser/DeviceOrientation', 168 'Lorg/chromium/content/browser/DeviceOrientation',
170 'Lorg/chromium/content/browser/FileChooserParams', 169 'Lorg/chromium/content/browser/FileChooserParams',
171 'Lorg/chromium/content/browser/FindNotificationDetails', 170 'Lorg/chromium/content/browser/FindNotificationDetails',
172 'Lorg/chromium/content/browser/InterceptedRequestData', 171 'Lorg/chromium/content/browser/InterceptedRequestData',
173 'Lorg/chromium/content/browser/JavaInputStream', 172 'Lorg/chromium/content/browser/JavaInputStream',
174 'Lorg/chromium/content/browser/LocationProvider', 173 'Lorg/chromium/content/browser/LocationProvider',
175 'Lorg/chromium/content/browser/SandboxedProcessArgs', 174 'Lorg/chromium/content/browser/SandboxedProcessArgs',
176 'Lorg/chromium/content/browser/SandboxedProcessConnection', 175 'Lorg/chromium/content/browser/SandboxedProcessConnection',
177 'Lorg/chromium/content/app/SandboxedProcessService', 176 'Lorg/chromium/content/app/SandboxedProcessService',
178 'Lorg/chromium/content/browser/TouchPoint', 177 'Lorg/chromium/content/browser/TouchPoint',
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 input_file = options.input_file 974 input_file = options.input_file
976 output_file = None 975 output_file = None
977 if options.output_dir: 976 if options.output_dir:
978 root_name = os.path.splitext(os.path.basename(input_file))[0] 977 root_name = os.path.splitext(os.path.basename(input_file))[0]
979 output_file = os.path.join(options.output_dir, root_name) + '_jni.h' 978 output_file = os.path.join(options.output_dir, root_name) + '_jni.h'
980 GenerateJNIHeader(input_file, output_file, options.namespace) 979 GenerateJNIHeader(input_file, output_file, options.namespace)
981 980
982 981
983 if __name__ == '__main__': 982 if __name__ == '__main__':
984 sys.exit(main(sys.argv)) 983 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeHttpAuthHandler.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698