| OLD | NEW |
| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 'Lcom/google/android/apps/chrome/OmniboxSuggestion', | 153 'Lcom/google/android/apps/chrome/OmniboxSuggestion', |
| 154 'Lcom/google/android/apps/chrome/PageInfoViewer', | 154 'Lcom/google/android/apps/chrome/PageInfoViewer', |
| 155 'Lcom/google/android/apps/chrome/Tab', | 155 'Lcom/google/android/apps/chrome/Tab', |
| 156 'Lcom/google/android/apps/chrome/database/SQLiteCursor', | 156 'Lcom/google/android/apps/chrome/database/SQLiteCursor', |
| 157 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer', | 157 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer', |
| 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/SelectFileDialog', | 164 'Lorg/chromium/chrome/browser/SelectFileDialog', |
| 164 'Lorg/chromium/content/browser/ContentVideoView', | 165 'Lorg/chromium/content/browser/ContentVideoView', |
| 165 'Lorg/chromium/content/browser/ContentViewClient', | 166 'Lorg/chromium/content/browser/ContentViewClient', |
| 166 'Lorg/chromium/content/browser/ContentViewCore', | 167 'Lorg/chromium/content/browser/ContentViewCore', |
| 167 'Lorg/chromium/content/browser/ContentHttpAuthHandler', | 168 'Lorg/chromium/content/browser/ContentHttpAuthHandler', |
| 168 'Lorg/chromium/content/browser/DeviceOrientation', | 169 'Lorg/chromium/content/browser/DeviceOrientation', |
| 169 'Lorg/chromium/content/browser/FileChooserParams', | 170 'Lorg/chromium/content/browser/FileChooserParams', |
| 170 'Lorg/chromium/content/browser/FindNotificationDetails', | 171 'Lorg/chromium/content/browser/FindNotificationDetails', |
| 171 'Lorg/chromium/content/browser/InterceptedRequestData', | 172 'Lorg/chromium/content/browser/InterceptedRequestData', |
| 172 'Lorg/chromium/content/browser/JavaInputStream', | 173 'Lorg/chromium/content/browser/JavaInputStream', |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 CheckFilenames(input_files, output_files) | 994 CheckFilenames(input_files, output_files) |
| 994 if options.jar_file: | 995 if options.jar_file: |
| 995 # CheckFileNames guarantees same length for inputs and outputs | 996 # CheckFileNames guarantees same length for inputs and outputs |
| 996 out_dirs = map(os.path.dirname, output_files) | 997 out_dirs = map(os.path.dirname, output_files) |
| 997 input_files = ExtractInputFiles(options.jar_file, input_files, out_dirs) | 998 input_files = ExtractInputFiles(options.jar_file, input_files, out_dirs) |
| 998 GenerateJNIHeaders(input_files, output_files, options.namespace) | 999 GenerateJNIHeaders(input_files, output_files, options.namespace) |
| 999 | 1000 |
| 1000 | 1001 |
| 1001 if __name__ == '__main__': | 1002 if __name__ == '__main__': |
| 1002 sys.exit(main(sys.argv)) | 1003 sys.exit(main(sys.argv)) |
| OLD | NEW |