| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \ \
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
* commit '966beb17e375f3fc5466ec5a1015eda9a4fa5639':
Pause WebView timer when Browser is paused
|
| |\ \ \ \ \
| | |/ / / /
| | | | | |
| | | | | |
| | | | | | |
* commit 'cf00c263557e1bd8ba060938cf8a451f2b92af2c':
Pause WebView timer when Browser is paused
|
| | |\ \ \ \ |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
If the Browser is paused while loading a page it
shall finish loading the page before the WebView
timer is paused.
The WebView timer shall be paused in onProgressChanged
when the progress has reached 100 not from onPageFinished
since onPageFinished is called when the main frame is loaded
and at that time subframe and other resources might haven't
been finished loaded i.e. the page is still in load, which the
result in WebView timers are not paused.
With this patch the Browser won't consume system resources
if it's minimized while doing a page load.
Change-Id: Id971dbcedfbedb5b0e56cba4076cd724d590ac85
|
|\ \ \ \ \ \ \
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
* commit '2584c31de479fa27971455b1e70b8e58b754c0e9':
Pass webview's useragent when downloading via context menu
|
| |\ \ \ \ \ \
| | |/ / / / /
| | | | | / /
| | |_|_|/ /
| |/| | | | |
Change-Id: I5853a3609caacf7b0ff0eecbb1ed697811b7430e
|
| | |\ \ \ \
| | | |/ / /
| | |/| | | |
|
| | |/ / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Currently null is passed as useragent to the Download Manager when
downloading via Browser context menu (causes the Download
Provider to use an empty useragent HTTP header).
This commit simply passes the webview's useragent instead.
This applies to the usecase when choosing save image/link
via the context menu (long press).
Change-Id: Ie9cc5e81630d0dcefe4708980146cc5ed867e4ad
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: I7511bc305b374fd01207a6fd720fde0dc543365f
Auto-generated-cl: translation import
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | | |
* commit 'd9719732b9e02d1236138d2f76eddf9ca2dbd2b7':
Pass referer on download requests
|
| |\ \ \ \ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Bug: 6662557
Change-Id: Ib7fdc4b3f1e0f7370631d8a222565faaee550bfb
|
|\ \ \ \ \ \
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
QuickSearchBox is not handled properly by Sqlite3."
* commit '7cc48ea51918f8c7c2d75ac524ee98643685c01c':
Fix the issue the SQL request built by QuickSearchBox is not handled properly by Sqlite3.
|
| |\ \ \ \ \
| | |/ / / /
| |/| / / /
| | |/ / /
| | | | |
| | | | |
| | | | | |
not handled properly by Sqlite3."
* commit '3d2e213ce176cb320ac52c71b00cb591beae8e04':
Fix the issue the SQL request built by QuickSearchBox is not handled properly by Sqlite3.
|
| | |\ \ \
| | | |/ /
| | |/| |
| | | | | |
properly by Sqlite3."
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
properly by Sqlite3.
SELECT history._id AS _id, history.url AS url,
CASE WHEN bookmarks.title IS NOT NULL THEN bookmarks.title ELSE
history.title END AS title,
CASE WHEN bookmarks.url IS NOT NULL THEN "2130837532" ELSE
"2130837548" END,
history.date AS date FROM history
LEFT OUTER JOIN bookmarks ON history.url = bookmarks.url
WHERE (url LIKE ?) AND (deleted=0 AND folder=0) ORDER BY
history.date DESC
has to be replaced with:
SELECT history._id AS _id, history.url AS url,
CASE WHEN bookmarks.title IS NOT NULL THEN bookmarks.title ELSE
history.title END AS title,
CASE WHEN bookmarks.url IS NOT NULL THEN "2130837532" ELSE
"2130837548" END,
history.date AS date FROM history
LEFT OUTER JOIN bookmarks ON history.url = bookmarks.url
WHERE (bookmarks.url LIKE ?) AND (deleted=0 AND folder=0) ORDER BY
history.date DESC
Change-Id: Ib9fc03c2e102cca83c09168f75f2911a191af5ae
Author: Jean-Christophe PINCE <jean-christophe.pince@intel.com>
Signed-off-by: Xiaokang Qin <xiaokang.qin@intel.com>
Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
Signed-off-by: Jack Ren <jack.ren@intel.com>
Author-tracking-BZ: 43188
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: Icf36d6e51ece5e718a4adb05cb76cfdfeb20ca88
Auto-generated-cl: translation import
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: Ic446eee53ba82d0ca17269de05339ac2e1ac2508
Auto-generated-cl: translation import
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: I313781c188be3d092f41ef070a22ba882d69a5fc
Auto-generated-cl: translation import
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: I23e5dbf70c2f71e49a72538380973112f23c4fb1
Auto-generated-cl: translation import
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | | |
* commit 'adb2b6554ff7670390a0acd5507dffe430a4cd0d':
NPE in WallpaperHandler
|
| |\ \ \ \
| | |/ / /
| | | | |
| | | | |
| | | | | |
* commit 'd9001a7dc5854d5dfc24a5ead19ad8c05acf171e':
NPE in WallpaperHandler
|
| | |\ \ \ |
|
| | | |/ /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In WallpaperHandler, BitmapFactory.decodeStream() is used to create
a Bitmap that is then set by WallpaperManager as a wallpaper.
This method has null as return value when something fails as
decoding, resulting in a nullpointer exception in WallpaperManager.
Adding nullcheck on the Bitmap before setting it as wallpaper to
avoid the NPE.
Change-Id: Ib1a0f9331898162b21094c3ebe80bc21d66f8bd7
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | | |
* commit 'd2a59930d8958f58a96409fc8efe68a53b976ed8':
Browser: Use ICS alert icon
|
| |\ \ \ \
| | |/ / /
| | | | |
| | | | |
| | | | | |
* commit 'edc9e064969b97fd62f492ef8e15812b63af2bb3':
Browser: Use ICS alert icon
|
| | |\ \ \
| | | |/ /
| | |/| | |
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | | |
Still using upscaled GB drawable in a few places.
Change-Id: I52471b10809117b5a68e8236dc320fde0da2c533
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Change-Id: I30dee6e23c127a5af8a9fad92cbb045b644cc8e3
Auto-generated-cl: translation import
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Change-Id: I1e4b5a4202608da284798f8ed651825bd2288408
Auto-generated-cl: translation import
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Change-Id: I8db42af7c50fc23b66f637b72c3c8d65abe9fdd6
Auto-generated-cl: translation import
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* commit '3c2ab0322d40a0eac3b482052532e27d20399f65':
Explicitly export content providers
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In a future version of Android, the default value for
<provider android:exported> will change from true to false.
Explicitly set android:exported="true"
Bug: 3306452
Change-Id: Ic8adfe95ce0e8b5a33a8de4f5ac4f4ff184a67e8
|
|/ / /
| | |
| | |
| | |
| | | |
Change-Id: If0dc8940b5d312dec7ab4803ce80ac65697495b5
Auto-generated-cl: translation import
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '39e7dfee746d73670eea435024a80ae9dbedf176':
Stop loading subview in stopAllLoading
|
| |\ \ |
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
The main webview is stopped twice instead of stopping
the subview loading. Correcting this cut and paste error.
Change-Id: Ic12c7219d222d42f59e27f1cda0cd65a003b41ca
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: If3bdd2026e323bb96bdede893c858d5bb79c3060
Auto-generated-cl: translation import
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: I953e470dccd90bdef407800bc8bcf795bfa4a848
Auto-generated-cl: translation import
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: I72bb2712652d3c37baa3eda17bf73833b81016a4
Auto-generated-cl: translation import
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: Ia7870b127edfb4c67181e04ad662ddc64f6878c0
Auto-generated-cl: translation import
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: Iac3c2627e2ecbe6b44c63776791124b14745c561
Auto-generated-cl: translation import
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: Ia13d11c2ddfabe406033768f7f55fe3e25de0ffb
Auto-generated-cl: translation import
|
| | |
| | |
| | |
| | |
| | | |
Change-Id: Ibfd6c800f552edbfe50a2a98792884bee897a12e
Auto-generated-cl: translation import
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '3f5abd721a1603f859ca7c8b8d77e103bd904395':
Remove ORDER BY clause on Search Suggestion queries.
|
| |\ \
| | | |
| | | |
| | | | |
Change-Id: I98846bdcbacded08caf473127115970d08770a6d
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Do not apply any ordering to results returned by the
Browser Provider when responding to search suggestions.
Change-Id: Ia487bc708d04ee629681692b5416ae65c6017012
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* commit '06f337b3976ad2093388932bac0003b371bccc5e':
Remove ORDER BY clause on Search Suggestion queries.
|
| |\ \ \
| | | |/
| | |/|
| | | |
| | | | |
* commit 'bc681880294a2e31a1325101917b6e36fd411bde':
Remove ORDER BY clause on Search Suggestion queries.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Do not apply any ordering to results returned by the
Browser Provider when responding to search suggestions.
Change-Id: Ia487bc708d04ee629681692b5416ae65c6017012
|