From ba6d7b853c32ad6c3be26c443daa61f322bcfdc2 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 21 Oct 2008 07:00:00 -0700 Subject: Initial Contribution --- Android.mk | 17 + AndroidManifest.xml | 185 + MODULE_LICENSE_APACHE2 | 0 NOTICE | 190 + .../plugins/gears-0.4.23.0/permissions_dialog.html | 2857 ++++++++++++ assets/plugins/gears-0.4.23.0/settings_dialog.html | 2750 ++++++++++++ .../plugins/gears-0.4.23.0/shortcuts_dialog.html | 2907 +++++++++++++ assets/plugins/gears.so | Bin 0 -> 1174896 bytes res/anim/find_dialog_enter.xml | 25 + res/anim/find_dialog_exit.xml | 26 + res/drawable/app_web_browser_sm.png | Bin 0 -> 616 bytes res/drawable/dialog_frame.9.png | Bin 0 -> 694 bytes res/drawable/fav_icn_background.png | Bin 0 -> 186 bytes res/drawable/ic_browser_done.png | Bin 0 -> 4337 bytes res/drawable/ic_browser_down.png | Bin 0 -> 764 bytes res/drawable/ic_browser_up.png | Bin 0 -> 795 bytes res/drawable/ic_dialog_alert.png | Bin 0 -> 3645 bytes res/drawable/ic_dialog_bookmark.png | Bin 0 -> 3805 bytes ...dialog_browser_certificate_partially_secure.png | Bin 0 -> 4255 bytes .../ic_dialog_browser_certificate_secure.png | Bin 0 -> 4291 bytes res/drawable/ic_dialog_browser_security_bad.png | Bin 0 -> 3556 bytes res/drawable/ic_dialog_browser_security_good.png | Bin 0 -> 3415 bytes res/drawable/ic_dialog_info.png | Bin 0 -> 3593 bytes res/drawable/ic_launcher_browser.png | Bin 0 -> 3318 bytes res/drawable/ic_launcher_drm_file.png | Bin 0 -> 2738 bytes res/drawable/ic_menu_back.png | Bin 0 -> 1237 bytes res/drawable/ic_menu_bookmark.png | Bin 0 -> 1080 bytes res/drawable/ic_menu_clear_playlist.png | Bin 0 -> 2281 bytes res/drawable/ic_menu_forward.png | Bin 0 -> 1228 bytes res/drawable/ic_menu_goto.png | Bin 0 -> 1636 bytes res/drawable/ic_menu_home.png | Bin 0 -> 2048 bytes res/drawable/ic_menu_recent_history.png | Bin 0 -> 2647 bytes res/drawable/ic_menu_refresh.png | Bin 0 -> 2450 bytes res/drawable/ic_menu_stop.png | Bin 0 -> 1930 bytes res/drawable/ic_menu_windows.png | Bin 0 -> 1244 bytes res/drawable/ic_new_window.png | Bin 0 -> 3010 bytes res/drawable/ic_search_browser.png | Bin 0 -> 2216 bytes res/drawable/ic_search_category_browser.png | Bin 0 -> 2395 bytes res/drawable/map.xml | 23 + res/drawable/mapfocused.png | Bin 0 -> 3367 bytes res/drawable/mapunfocused.png | Bin 0 -> 3340 bytes res/drawable/page_indicator.png | Bin 0 -> 1224 bytes res/drawable/page_indicator_unselected2.png | Bin 0 -> 188 bytes res/drawable/ssl_icon.png | Bin 0 -> 3216 bytes res/drawable/urlbar_background.9.png | Bin 0 -> 303 bytes res/layout-land/http_authentication.xml | 73 + res/layout-land/page_info.xml | 66 + res/layout-land/ssl_certificate.xml | 266 ++ res/layout/add_new_bookmark.xml | 52 + res/layout/bookmark_item.xml | 57 + res/layout/browser_add_bookmark.xml | 101 + res/layout/browser_bookmarks_page.xml | 27 + res/layout/browser_download_item.xml | 89 + res/layout/browser_downloads_page.xml | 25 + res/layout/browser_find.xml | 128 + res/layout/browser_subwindow.xml | 50 + res/layout/cache_cleared.xml | 31 + res/layout/empty_history.xml | 25 + res/layout/history_item.xml | 42 + res/layout/http_authentication.xml | 72 + res/layout/js_prompt.xml | 38 + res/layout/no_downloads.xml | 25 + res/layout/page_info.xml | 67 + res/layout/search_bar.xml | 73 + res/layout/ssl_certificate.xml | 280 ++ res/layout/ssl_success.xml | 44 + res/layout/ssl_warning.xml | 41 + res/layout/ssl_warnings.xml | 51 + res/layout/tabitem.xml | 54 + res/menu/bookmarks.xml | 21 + res/menu/bookmarkscontext.xml | 36 + res/menu/browser.xml | 105 + res/menu/browsercontext.xml | 59 + res/menu/downloadhistory.xml | 26 + res/menu/downloadhistorycontextfailed.xml | 22 + res/menu/downloadhistorycontextfinished.xml | 24 + res/menu/downloadhistorycontextrunning.xml | 22 + res/menu/history.xml | 21 + res/menu/historycontext.xml | 30 + res/menu/tabscontext.xml | 26 + res/values-cs/strings.xml | 217 + res/values-de-rDE/strings.xml | 270 ++ res/values-es-rUS/strings.xml | 270 ++ res/values-fr-rFR/strings.xml | 270 ++ res/values-it-rIT/strings.xml | 270 ++ res/values-zh-rTW/strings.xml | 270 ++ res/values/colors.xml | 37 + res/values/strings.xml | 506 +++ res/values/styles.xml | 39 + res/xml/browser_preferences.xml | 164 + res/xml/debug_preferences.xml | 62 + res/xml/searchable.xml | 27 + src/com/android/browser/AddBookmarkPage.java | 195 + src/com/android/browser/AddNewBookmark.java | 72 + src/com/android/browser/BookmarkItem.java | 105 + src/com/android/browser/Browser.java | 59 + src/com/android/browser/BrowserActivity.java | 4532 ++++++++++++++++++++ .../android/browser/BrowserBookmarksAdapter.java | 522 +++ src/com/android/browser/BrowserBookmarksPage.java | 356 ++ .../android/browser/BrowserDownloadAdapter.java | 221 + src/com/android/browser/BrowserDownloadPage.java | 470 ++ src/com/android/browser/BrowserHistoryPage.java | 377 ++ src/com/android/browser/BrowserPluginList.java | 66 + .../android/browser/BrowserPreferencesPage.java | 141 + src/com/android/browser/BrowserProvider.java | 566 +++ src/com/android/browser/BrowserSettings.java | 431 ++ .../android/browser/BrowserYesNoPreference.java | 56 + src/com/android/browser/Dots.java | 83 + src/com/android/browser/FakeWebView.java | 106 + src/com/android/browser/FindDialog.java | 243 ++ src/com/android/browser/GearsDialog.java | 124 + src/com/android/browser/GearsDialogService.java | 96 + src/com/android/browser/HistoryItem.java | 126 + src/com/android/browser/IGearsDialogService.aidl | 6 + src/com/android/browser/ImageAdapter.java | 298 ++ src/com/android/browser/ImageGrid.java | 239 ++ src/com/android/browser/KeyTracker.java | 107 + src/com/android/browser/TabControl.java | 840 ++++ 118 files changed, 23988 insertions(+) create mode 100644 Android.mk create mode 100644 AndroidManifest.xml create mode 100644 MODULE_LICENSE_APACHE2 create mode 100644 NOTICE create mode 100644 assets/plugins/gears-0.4.23.0/permissions_dialog.html create mode 100644 assets/plugins/gears-0.4.23.0/settings_dialog.html create mode 100644 assets/plugins/gears-0.4.23.0/shortcuts_dialog.html create mode 100644 assets/plugins/gears.so create mode 100644 res/anim/find_dialog_enter.xml create mode 100644 res/anim/find_dialog_exit.xml create mode 100644 res/drawable/app_web_browser_sm.png create mode 100644 res/drawable/dialog_frame.9.png create mode 100755 res/drawable/fav_icn_background.png create mode 100644 res/drawable/ic_browser_done.png create mode 100755 res/drawable/ic_browser_down.png create mode 100755 res/drawable/ic_browser_up.png create mode 100755 res/drawable/ic_dialog_alert.png create mode 100644 res/drawable/ic_dialog_bookmark.png create mode 100755 res/drawable/ic_dialog_browser_certificate_partially_secure.png create mode 100755 res/drawable/ic_dialog_browser_certificate_secure.png create mode 100755 res/drawable/ic_dialog_browser_security_bad.png create mode 100755 res/drawable/ic_dialog_browser_security_good.png create mode 100755 res/drawable/ic_dialog_info.png create mode 100755 res/drawable/ic_launcher_browser.png create mode 100644 res/drawable/ic_launcher_drm_file.png create mode 100644 res/drawable/ic_menu_back.png create mode 100644 res/drawable/ic_menu_bookmark.png create mode 100644 res/drawable/ic_menu_clear_playlist.png create mode 100644 res/drawable/ic_menu_forward.png create mode 100644 res/drawable/ic_menu_goto.png create mode 100644 res/drawable/ic_menu_home.png create mode 100644 res/drawable/ic_menu_recent_history.png create mode 100644 res/drawable/ic_menu_refresh.png create mode 100644 res/drawable/ic_menu_stop.png create mode 100644 res/drawable/ic_menu_windows.png create mode 100644 res/drawable/ic_new_window.png create mode 100644 res/drawable/ic_search_browser.png create mode 100644 res/drawable/ic_search_category_browser.png create mode 100644 res/drawable/map.xml create mode 100644 res/drawable/mapfocused.png create mode 100644 res/drawable/mapunfocused.png create mode 100644 res/drawable/page_indicator.png create mode 100644 res/drawable/page_indicator_unselected2.png create mode 100644 res/drawable/ssl_icon.png create mode 100644 res/drawable/urlbar_background.9.png create mode 100644 res/layout-land/http_authentication.xml create mode 100644 res/layout-land/page_info.xml create mode 100644 res/layout-land/ssl_certificate.xml create mode 100644 res/layout/add_new_bookmark.xml create mode 100644 res/layout/bookmark_item.xml create mode 100644 res/layout/browser_add_bookmark.xml create mode 100644 res/layout/browser_bookmarks_page.xml create mode 100644 res/layout/browser_download_item.xml create mode 100644 res/layout/browser_downloads_page.xml create mode 100644 res/layout/browser_find.xml create mode 100644 res/layout/browser_subwindow.xml create mode 100644 res/layout/cache_cleared.xml create mode 100644 res/layout/empty_history.xml create mode 100644 res/layout/history_item.xml create mode 100644 res/layout/http_authentication.xml create mode 100644 res/layout/js_prompt.xml create mode 100644 res/layout/no_downloads.xml create mode 100644 res/layout/page_info.xml create mode 100644 res/layout/search_bar.xml create mode 100644 res/layout/ssl_certificate.xml create mode 100644 res/layout/ssl_success.xml create mode 100644 res/layout/ssl_warning.xml create mode 100644 res/layout/ssl_warnings.xml create mode 100644 res/layout/tabitem.xml create mode 100644 res/menu/bookmarks.xml create mode 100644 res/menu/bookmarkscontext.xml create mode 100644 res/menu/browser.xml create mode 100644 res/menu/browsercontext.xml create mode 100644 res/menu/downloadhistory.xml create mode 100644 res/menu/downloadhistorycontextfailed.xml create mode 100644 res/menu/downloadhistorycontextfinished.xml create mode 100644 res/menu/downloadhistorycontextrunning.xml create mode 100644 res/menu/history.xml create mode 100644 res/menu/historycontext.xml create mode 100644 res/menu/tabscontext.xml create mode 100644 res/values-cs/strings.xml create mode 100644 res/values-de-rDE/strings.xml create mode 100644 res/values-es-rUS/strings.xml create mode 100644 res/values-fr-rFR/strings.xml create mode 100644 res/values-it-rIT/strings.xml create mode 100644 res/values-zh-rTW/strings.xml create mode 100644 res/values/colors.xml create mode 100644 res/values/strings.xml create mode 100644 res/values/styles.xml create mode 100644 res/xml/browser_preferences.xml create mode 100644 res/xml/debug_preferences.xml create mode 100644 res/xml/searchable.xml create mode 100644 src/com/android/browser/AddBookmarkPage.java create mode 100644 src/com/android/browser/AddNewBookmark.java create mode 100644 src/com/android/browser/BookmarkItem.java create mode 100644 src/com/android/browser/Browser.java create mode 100644 src/com/android/browser/BrowserActivity.java create mode 100644 src/com/android/browser/BrowserBookmarksAdapter.java create mode 100644 src/com/android/browser/BrowserBookmarksPage.java create mode 100644 src/com/android/browser/BrowserDownloadAdapter.java create mode 100644 src/com/android/browser/BrowserDownloadPage.java create mode 100644 src/com/android/browser/BrowserHistoryPage.java create mode 100644 src/com/android/browser/BrowserPluginList.java create mode 100644 src/com/android/browser/BrowserPreferencesPage.java create mode 100644 src/com/android/browser/BrowserProvider.java create mode 100644 src/com/android/browser/BrowserSettings.java create mode 100644 src/com/android/browser/BrowserYesNoPreference.java create mode 100644 src/com/android/browser/Dots.java create mode 100644 src/com/android/browser/FakeWebView.java create mode 100644 src/com/android/browser/FindDialog.java create mode 100644 src/com/android/browser/GearsDialog.java create mode 100644 src/com/android/browser/GearsDialogService.java create mode 100644 src/com/android/browser/HistoryItem.java create mode 100644 src/com/android/browser/IGearsDialogService.aidl create mode 100644 src/com/android/browser/ImageAdapter.java create mode 100644 src/com/android/browser/ImageGrid.java create mode 100644 src/com/android/browser/KeyTracker.java create mode 100644 src/com/android/browser/TabControl.java diff --git a/Android.mk b/Android.mk new file mode 100644 index 00000000..f8cfafec --- /dev/null +++ b/Android.mk @@ -0,0 +1,17 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := user development + +# TODO: Remove dependency of application on the test runner (android.test.runner) +# library. +LOCAL_JAVA_LIBRARIES := android.test.runner + +LOCAL_STATIC_JAVA_LIBRARIES := googlelogin-client + +LOCAL_SRC_FILES := $(call all-subdir-java-files) \ + src/com/android/browser/IGearsDialogService.aidl + +LOCAL_PACKAGE_NAME := Browser + +include $(BUILD_PACKAGE) diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100644 index 00000000..6bf400de --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MODULE_LICENSE_APACHE2 b/MODULE_LICENSE_APACHE2 new file mode 100644 index 00000000..e69de29b diff --git a/NOTICE b/NOTICE new file mode 100644 index 00000000..c5b1efa7 --- /dev/null +++ b/NOTICE @@ -0,0 +1,190 @@ + + Copyright (c) 2005-2008, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + diff --git a/assets/plugins/gears-0.4.23.0/permissions_dialog.html b/assets/plugins/gears-0.4.23.0/permissions_dialog.html new file mode 100644 index 00000000..a332f786 --- /dev/null +++ b/assets/plugins/gears-0.4.23.0/permissions_dialog.html @@ -0,0 +1,2857 @@ + + + + + + + + + + + + + +
+

Information

+

+ +

+ + Go back +
+ + + + +
+
+
+ + + + + +
+ + +
+
+
+
+
+
+
+ + + + + +
+ + + + + + + + + + diff --git a/assets/plugins/gears-0.4.23.0/settings_dialog.html b/assets/plugins/gears-0.4.23.0/settings_dialog.html new file mode 100644 index 00000000..e70e790e --- /dev/null +++ b/assets/plugins/gears-0.4.23.0/settings_dialog.html @@ -0,0 +1,2750 @@ + + + + + + + + + + + + +
+

+ +

+
+
+
+
+
+
+ + + + + + + + diff --git a/assets/plugins/gears-0.4.23.0/shortcuts_dialog.html b/assets/plugins/gears-0.4.23.0/shortcuts_dialog.html new file mode 100644 index 00000000..fc68120e --- /dev/null +++ b/assets/plugins/gears-0.4.23.0/shortcuts_dialog.html @@ -0,0 +1,2907 @@ + + + + + + + + + + + + + + +
+
+
+
+ + + + + +
+
+
+
+
+
+ +
+

+
+ + + + + + + + + + + + + + + +
+
+ +
+
+ + + + + + + + + diff --git a/assets/plugins/gears.so b/assets/plugins/gears.so new file mode 100644 index 00000000..1d0ba0e8 Binary files /dev/null and b/assets/plugins/gears.so differ diff --git a/res/anim/find_dialog_enter.xml b/res/anim/find_dialog_enter.xml new file mode 100644 index 00000000..6e19c216 --- /dev/null +++ b/res/anim/find_dialog_enter.xml @@ -0,0 +1,25 @@ + + + + + + + diff --git a/res/anim/find_dialog_exit.xml b/res/anim/find_dialog_exit.xml new file mode 100644 index 00000000..5775bab8 --- /dev/null +++ b/res/anim/find_dialog_exit.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/res/drawable/app_web_browser_sm.png b/res/drawable/app_web_browser_sm.png new file mode 100644 index 00000000..dbb460ad Binary files /dev/null and b/res/drawable/app_web_browser_sm.png differ diff --git a/res/drawable/dialog_frame.9.png b/res/drawable/dialog_frame.9.png new file mode 100644 index 00000000..3d41e2f1 Binary files /dev/null and b/res/drawable/dialog_frame.9.png differ diff --git a/res/drawable/fav_icn_background.png b/res/drawable/fav_icn_background.png new file mode 100755 index 00000000..9275ff33 Binary files /dev/null and b/res/drawable/fav_icn_background.png differ diff --git a/res/drawable/ic_browser_done.png b/res/drawable/ic_browser_done.png new file mode 100644 index 00000000..3f300720 Binary files /dev/null and b/res/drawable/ic_browser_done.png differ diff --git a/res/drawable/ic_browser_down.png b/res/drawable/ic_browser_down.png new file mode 100755 index 00000000..e3747a76 Binary files /dev/null and b/res/drawable/ic_browser_down.png differ diff --git a/res/drawable/ic_browser_up.png b/res/drawable/ic_browser_up.png new file mode 100755 index 00000000..6ea5a813 Binary files /dev/null and b/res/drawable/ic_browser_up.png differ diff --git a/res/drawable/ic_dialog_alert.png b/res/drawable/ic_dialog_alert.png new file mode 100755 index 00000000..0a7de047 Binary files /dev/null and b/res/drawable/ic_dialog_alert.png differ diff --git a/res/drawable/ic_dialog_bookmark.png b/res/drawable/ic_dialog_bookmark.png new file mode 100644 index 00000000..6a83a16b Binary files /dev/null and b/res/drawable/ic_dialog_bookmark.png differ diff --git a/res/drawable/ic_dialog_browser_certificate_partially_secure.png b/res/drawable/ic_dialog_browser_certificate_partially_secure.png new file mode 100755 index 00000000..9edff390 Binary files /dev/null and b/res/drawable/ic_dialog_browser_certificate_partially_secure.png differ diff --git a/res/drawable/ic_dialog_browser_certificate_secure.png b/res/drawable/ic_dialog_browser_certificate_secure.png new file mode 100755 index 00000000..53e23c61 Binary files /dev/null and b/res/drawable/ic_dialog_browser_certificate_secure.png differ diff --git a/res/drawable/ic_dialog_browser_security_bad.png b/res/drawable/ic_dialog_browser_security_bad.png new file mode 100755 index 00000000..a3f660c2 Binary files /dev/null and b/res/drawable/ic_dialog_browser_security_bad.png differ diff --git a/res/drawable/ic_dialog_browser_security_good.png b/res/drawable/ic_dialog_browser_security_good.png new file mode 100755 index 00000000..b0d63999 Binary files /dev/null and b/res/drawable/ic_dialog_browser_security_good.png differ diff --git a/res/drawable/ic_dialog_info.png b/res/drawable/ic_dialog_info.png new file mode 100755 index 00000000..e8b02299 Binary files /dev/null and b/res/drawable/ic_dialog_info.png differ diff --git a/res/drawable/ic_launcher_browser.png b/res/drawable/ic_launcher_browser.png new file mode 100755 index 00000000..63f5d8fb Binary files /dev/null and b/res/drawable/ic_launcher_browser.png differ diff --git a/res/drawable/ic_launcher_drm_file.png b/res/drawable/ic_launcher_drm_file.png new file mode 100644 index 00000000..57378b23 Binary files /dev/null and b/res/drawable/ic_launcher_drm_file.png differ diff --git a/res/drawable/ic_menu_back.png b/res/drawable/ic_menu_back.png new file mode 100644 index 00000000..5ce50ebf Binary files /dev/null and b/res/drawable/ic_menu_back.png differ diff --git a/res/drawable/ic_menu_bookmark.png b/res/drawable/ic_menu_bookmark.png new file mode 100644 index 00000000..40c69509 Binary files /dev/null and b/res/drawable/ic_menu_bookmark.png differ diff --git a/res/drawable/ic_menu_clear_playlist.png b/res/drawable/ic_menu_clear_playlist.png new file mode 100644 index 00000000..750db627 Binary files /dev/null and b/res/drawable/ic_menu_clear_playlist.png differ diff --git a/res/drawable/ic_menu_forward.png b/res/drawable/ic_menu_forward.png new file mode 100644 index 00000000..0936fac4 Binary files /dev/null and b/res/drawable/ic_menu_forward.png differ diff --git a/res/drawable/ic_menu_goto.png b/res/drawable/ic_menu_goto.png new file mode 100644 index 00000000..40183ebc Binary files /dev/null and b/res/drawable/ic_menu_goto.png differ diff --git a/res/drawable/ic_menu_home.png b/res/drawable/ic_menu_home.png new file mode 100644 index 00000000..34943f66 Binary files /dev/null and b/res/drawable/ic_menu_home.png differ diff --git a/res/drawable/ic_menu_recent_history.png b/res/drawable/ic_menu_recent_history.png new file mode 100644 index 00000000..4ccae5d1 Binary files /dev/null and b/res/drawable/ic_menu_recent_history.png differ diff --git a/res/drawable/ic_menu_refresh.png b/res/drawable/ic_menu_refresh.png new file mode 100644 index 00000000..77d70dd4 Binary files /dev/null and b/res/drawable/ic_menu_refresh.png differ diff --git a/res/drawable/ic_menu_stop.png b/res/drawable/ic_menu_stop.png new file mode 100644 index 00000000..4fc825cd Binary files /dev/null and b/res/drawable/ic_menu_stop.png differ diff --git a/res/drawable/ic_menu_windows.png b/res/drawable/ic_menu_windows.png new file mode 100644 index 00000000..cdc4d839 Binary files /dev/null and b/res/drawable/ic_menu_windows.png differ diff --git a/res/drawable/ic_new_window.png b/res/drawable/ic_new_window.png new file mode 100644 index 00000000..3f8442df Binary files /dev/null and b/res/drawable/ic_new_window.png differ diff --git a/res/drawable/ic_search_browser.png b/res/drawable/ic_search_browser.png new file mode 100644 index 00000000..98761177 Binary files /dev/null and b/res/drawable/ic_search_browser.png differ diff --git a/res/drawable/ic_search_category_browser.png b/res/drawable/ic_search_category_browser.png new file mode 100644 index 00000000..da8d4e3e Binary files /dev/null and b/res/drawable/ic_search_category_browser.png differ diff --git a/res/drawable/map.xml b/res/drawable/map.xml new file mode 100644 index 00000000..84d59039 --- /dev/null +++ b/res/drawable/map.xml @@ -0,0 +1,23 @@ + + + + + + diff --git a/res/drawable/mapfocused.png b/res/drawable/mapfocused.png new file mode 100644 index 00000000..83efcac2 Binary files /dev/null and b/res/drawable/mapfocused.png differ diff --git a/res/drawable/mapunfocused.png b/res/drawable/mapunfocused.png new file mode 100644 index 00000000..736dc686 Binary files /dev/null and b/res/drawable/mapunfocused.png differ diff --git a/res/drawable/page_indicator.png b/res/drawable/page_indicator.png new file mode 100644 index 00000000..73c030a7 Binary files /dev/null and b/res/drawable/page_indicator.png differ diff --git a/res/drawable/page_indicator_unselected2.png b/res/drawable/page_indicator_unselected2.png new file mode 100644 index 00000000..70818eeb Binary files /dev/null and b/res/drawable/page_indicator_unselected2.png differ diff --git a/res/drawable/ssl_icon.png b/res/drawable/ssl_icon.png new file mode 100644 index 00000000..032e6835 Binary files /dev/null and b/res/drawable/ssl_icon.png differ diff --git a/res/drawable/urlbar_background.9.png b/res/drawable/urlbar_background.9.png new file mode 100644 index 00000000..38583b39 Binary files /dev/null and b/res/drawable/urlbar_background.9.png differ diff --git a/res/layout-land/http_authentication.xml b/res/layout-land/http_authentication.xml new file mode 100644 index 00000000..b2f012d7 --- /dev/null +++ b/res/layout-land/http_authentication.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/res/layout-land/page_info.xml b/res/layout-land/page_info.xml new file mode 100644 index 00000000..f08dd7de --- /dev/null +++ b/res/layout-land/page_info.xml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/res/layout-land/ssl_certificate.xml b/res/layout-land/ssl_certificate.xml new file mode 100644 index 00000000..d6036c1b --- /dev/null +++ b/res/layout-land/ssl_certificate.xml @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/layout/add_new_bookmark.xml b/res/layout/add_new_bookmark.xml new file mode 100644 index 00000000..c8eb2207 --- /dev/null +++ b/res/layout/add_new_bookmark.xml @@ -0,0 +1,52 @@ + + + + + + + + + + diff --git a/res/layout/bookmark_item.xml b/res/layout/bookmark_item.xml new file mode 100644 index 00000000..7d544476 --- /dev/null +++ b/res/layout/bookmark_item.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + diff --git a/res/layout/browser_add_bookmark.xml b/res/layout/browser_add_bookmark.xml new file mode 100644 index 00000000..085a1183 --- /dev/null +++ b/res/layout/browser_add_bookmark.xml @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + +