| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
source master.
Change-Id: Ief98236102983698e4b753ec9649142761c86607
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to home" functionality in the Browser.
When the user selects the bookmark button adjacent to the URL bar
they will be prompted to either add a new bookmark for the current
page or add a shortcut to the current page to their homescreen,
rather than being taken to the bookmark management activity. The
bookmarks button on the options menu will still take the user
directly to the bookmark management activity.
Bug: b/2794945
Change-Id: I07190250379f1d6e2fe6b8ea280317949cd58b15
|
|
|
|
|
|
| |
Bug 2611964
Change-Id: I8f69ec42fbf880d031cfc2372cffd9719db4e280
|
|
|
|
| |
Log when the user add a bookmark, sending the url of the bookmark and how the bookmark was added
|
|
|
|
| |
Work to prevent ANR reported in http://b/issue?id=2322540 category 1.
|
|
|
|
|
| |
Bug: http://b/2261225
Change-Id: I3322a2326cdddd290d4c5b95cc87624631d47c00
|
|
|
|
|
|
| |
directly handle.
Change-Id: I9cbdfeaaeef4ded3dac1623854ecb9c5c603eb91
|
|
|
|
|
|
| |
the title and UI widgets.
Change-Id: I2e6b75a4205a2fdc7a2dbecf276e1ad5cf567d75
|
|
|
|
| |
Change-Id: I860482f0a0610669f87965947b0818508d8988b7
|
|
|
|
|
|
| |
Bug: 2148968
Change-Id: I03025c3845e536d8aba0c1a8f2c6537333422a48
|
|
|
|
|
|
| |
onProgressChanged(100) to ensure that we save the substituted error page rather than the previous page that loaded. Also save the thumbnail for the page if the user creates the bookmark through the add bookmark menu or clicking the add bookmark icon on the bookmarks page.
Change-Id: Ib2b7692a45290f9ce372968e05cde8f6903e4572
|
|
|
|
|
|
| |
The precomposed icon overrides any other touch icon. We still need to do the
round rect clip because apparently apple still applies the rounded corners, just
not the glass effect. Inset the rectangle by 1 to fit the icons better.
|
|
|
|
|
|
|
|
| |
When creating a bookmark, allow the book's URL to start with
javascript: . Use URI to isolate the scheme
to take care of case and special characters.
fixes http://b/issue?id=2059889
|
| |
|
|
|
|
|
|
|
|
|
| |
Start capturing screenshots for all visited pages, and show them
in a grid view on the most visited page. Modify the BrowserBookmarks-
Page and Adapter so they can be used for the "Most visited" page.
Also change some of the ids for context menu items to be the same
in the browser and history context menus, for simplicity in
handling them in BrowserBookmarksPage.
|
|
|
|
|
|
|
|
|
|
|
| |
Add DownloadTouchIcon, an AsyncTask that downloads the apple-touch-icon for urls
that are marked as bookmarks. The touch icon is stored in the bookmark database
similar to favicons and thumbnails. If a shortcut is created for a bookmark
containing a touch icon, the touch icon is used (with rounded corners).
Refactor the bookmarks query to be a static function. The function uses the
original url and new url to look for matching bookmarks. This takes care of
redirects as well as bookmarks containing queries.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The agent now does backup/restore of the bookmarks table. Whether to back up is
determined by flattening the bookmark table, CRCing the flattened
representation, and comparing the CRC with the previous backup pass's version.
If they differ (or if the file size differs), the table is deemed to have
changed and we send the flattened file off to the server as a single key.
On restore, the bookmark records are read individually from the flattened
representation, the existing bookmarks table is queried for a matching URL, and
if none exists the bookmark is inserted into the table.
Bookmarks.addBookmark() now takes a boolean argument "retainIcon." When false,
the implementation will not call into the web icon database. This is necessary
during restore because the web icon database is only available from the Browser
app's main thread, but restore happens without the app proper being involved.
The other call points for addBookmark() have been updated to pass 'true,' i.e.
preserving the current behavior.
|
|
|
|
|
| |
Driven by a desire to put bookmarking functionality into the title
bar, I have consolidated the code for adding and removing bookmarks.
|
|
|
|
|
|
|
|
| |
Fix for issue 1863535. We were storing https:// sites in
the database without https:, so it was stored as a non
secure site. Then going back to that bookmark does not work.
Now, use the truncated url to compare, but store the original
url (with https at the beginning)
|
|
|
|
|
|
|
|
|
| |
Fix for buganizer issue 1659694. Prior to this change, the user could
visit http://cuil.com, and then bookmark http://www.cuil.com, and the
bookmark would be stored in the database as a separate entry. This
results in the bookmark claiming to have been visited long ago. Now,
the two are stored as one entry, clearing up disagreements about
number of visits and last visited date.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|