| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ |
|
| |/
| |
| |
| |
| |
| | |
Bug: 6806384
Change-Id: Ib009a345d2dcaf5630864e8087e12194d213e174
|
|\ \ |
|
| |/
| |
| |
| |
| |
| | |
Bug: 6938839
Change-Id: I964ce0ffb47e9fcfb93f61edfc0e53c160d9e818
|
|/
|
|
|
|
| |
Bug: 6940202
Change-Id: I6b8c53285606fdcf6495a4ccf3c94a2037c8979b
|
|\
| |
| |
| |
| |
| |
| | |
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.
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
|
| |\
| | |
| | |
| | |
| | | |
* commit 'eb2c7c2d3f4ddb0ebeab2a2d5537b208cf666db1':
Import translations. DO NOT MERGE
|
| | |
| | |
| | |
| | | |
Change-Id: If82271af04a364d86f1734e0d5a3ee98639005f4
|
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | | |
Change-Id: Ia1aaa4960cd30f6b5ab5cb7a8eb3f7b9be194684
|
| | |
| | |
| | |
| | | |
Change-Id: I1620793215d53ea8303dcc4ce27c63d66dd22233
|
| | |
| | |
| | |
| | | |
Change-Id: I4bf9e7d24807658e20c687014501fa9aa18c0405
|
| | |
| | |
| | |
| | | |
Change-Id: I727ce7491f5483729517900a4fc4ae42eff525fa
|
| | |
| | |
| | |
| | | |
Change-Id: Iaceec026da21eeece8afc2fcb4df2a4ef4800d6b
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '80f6d0574a9655fac3bd219afcb1810d0f66a57f':
Enable voice search in omnibox
|
| |\ \
| | |/
| | |
| | |
| | | |
* commit '3c573ac4dbc0e9a117a9540c410911bab52dffa7':
Enable voice search in omnibox
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Bug: 6601348
Bring back voice search. Also fixes focus bug for fixed titlebar.
Change-Id: I83c8ad96957b62c23ad0bbb35685712687d11213
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | | |
* commit '5a8a0f40caf0d9e0e2e1b8689a8b8ec091569fcf':
Import translations. DO NOT MERGE
|
| | |/
| | |
| | |
| | | |
Change-Id: Ibf82f8bf961445d0745f5c222b263cb03f621e7c
|
| | |
| | |
| | |
| | | |
Change-Id: Ifb0c7ac9e94c1dbfd3673d23edf0e2006cb21ae4
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '7aae2532c247efc4bb815ff4962526120d24d5ad':
Fix seznam's suggest URL
|
| |\ \
| | |/
| | |
| | |
| | | |
* commit '9d64d9a8016cc862296b20c4db545018373bdea5':
Fix seznam's suggest URL
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Bug: 6578384
http:/// has one too many /'s
Change-Id: I604d047872c910b8d71ac83d4c86cbdea17aba4b
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | | |
* commit 'f4f58054863590fd74ca618650a1c685e344ec70':
Import translations. DO NOT MERGE
|
| | |/
| | |
| | |
| | | |
Change-Id: If95d90dee051d663f80338d75ae5660cb1a3df80
|
| |\ \
| | |/
| | |
| | |
| | | |
* commit '19276b6b3ffe8864510b65ac6cad441c9b674fea':
Import translations. DO NOT MERGE
|
| | |
| | |
| | |
| | | |
Change-Id: Ieebdab18b84d1705fed6a3af5f2d94ce70be727f
|
| |\ \
| | |/
| | |
| | |
| | | |
* commit 'd6bea1ebe54aac57625b9ae6784d677ce56eec83':
Import translations. DO NOT MERGE
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | | |
Change-Id: I9390d004cfae9d8836e459870daa98a144cb0a05
|
| | | |
| | | |
| | | |
| | | | |
Change-Id: Ib136e645574ce17d27d586bcd49c5848e955a442
|
| | | |
| | | |
| | | |
| | | | |
Change-Id: Idfa14e2825477830d671bc978da73fdebd876428
|
|\ \ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Change-Id: I273cb1f79fee61f9ed7f26482d007217b62edefc
|
|\ \ \ \ \
| |/ / / /
|/| / / /
| |/ / /
| | | |
| | | |
| | | | |
into jb-dev
* commit '5f51df7f18e8fe9319b45eaf095511f7aa95aa44':
tighten nav bar layout & fix animation bug
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | | |
* commit '06b7e0fafdee08f7045f419b19eb1aacb00d7d60':
tighten nav bar layout & fix animation bug
|
| | |\ \
| | | |/
| | |/| |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Bug: 6563289
Change-Id: I00fdecf645128bb1fec8e23be94aa2b85fb586f7
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | | |
* commit '02e9618ce3a54bc120697c05f9555c0a6a7ea502':
Import translations. DO NOT MERGE
|
| | |/
| | |
| | |
| | | |
Change-Id: Ib9b9f062988f60cb1c551068926e77a5c31dabc7
|
| |\ \
| | |/
| | |
| | |
| | | |
* commit '070a0c79c3c6498c2b05c9ad1f4c93b13c46382c':
Import translations. DO NOT MERGE
|