Searched refs:URLRow (Results 1 - 25 of 71) sorted by relevance

123

/external/chromium_org/components/history/core/browser/
H A Durl_row.cc11 URLRow::URLRow() { function in class:history::URLRow
15 URLRow::URLRow(const GURL& url) : url_(url) { function in class:history::URLRow
20 URLRow::URLRow(const GURL& url, URLID id) : url_(url) { function in class:history::URLRow
27 URLRow::~URLRow() {
30 URLRow& URLRow
[all...]
H A Dhistory_match.h19 HistoryMatch(const URLRow& url_info,
31 URLRow url_info;
H A Durl_row.h30 class URLRow { class in namespace:history
32 URLRow();
34 explicit URLRow(const GURL& url);
36 // We need to be able to set the id of a URLRow that's being passed through
38 URLRow(const GURL& url, URLID id);
40 virtual ~URLRow();
41 URLRow& operator=(const URLRow& other);
102 // Helper functor that determines if an URLRow refers to a given URL.
107 bool operator()(const URLRow
[all...]
H A Durl_database.h58 bool GetURLRow(URLID url_id, URLRow* info);
68 URLID GetRowForURL(const GURL& url, URLRow* info);
75 bool UpdateURLRow(URLID url_id, const URLRow& info);
83 URLID AddURL(const URLRow& info) {
91 bool InsertOrUpdateURLRowByID(const URLRow& info);
110 URLID AddTemporaryURL(const URLRow& row) {
141 bool GetNextURL(history::URLRow* r);
184 history::URLRow* info);
277 URLID AddURLInternal(const URLRow& info, bool is_temporary);
279 // Convenience to fill a history::URLRow
[all...]
H A Durl_database_unittest.cc22 bool IsURLRowEqual(const URLRow& a,
23 const URLRow& b) {
74 URLRow url_info1(url1);
84 URLRow url_info2(url2);
93 URLRow info;
109 URLRow info2;
115 URLRow url_info3(url3);
130 URLRow url_info4(url4);
162 URLRow url_info1(GURL("http://www.google.com/"));
201 URLRow url_info
[all...]
H A Dhistory_match.cc18 HistoryMatch::HistoryMatch(const URLRow& url_info,
/external/chromium_org/chrome/browser/history/
H A Dhistory_notifications.h26 // The affected URLRow. The ID will be set to the value that is currently in
28 URLRow row;
74 KeywordSearchUpdatedDetails(const URLRow& url_row,
79 // The affected URLRow. The ID will be set to the value that is currently in
81 URLRow url_row;
91 // The ID of the corresponding URLRow in the main history database.
H A Din_memory_history_backend.h44 class URLRow;
81 void OnURLVisitedOrModified(const URLRow& url_row);
H A Dtyped_url_syncable_service.h34 class URLRow;
60 void OnUrlVisited(ui::PageTransition transition, URLRow* row);
69 typedef std::vector<std::pair<URLID, URLRow> > TypedUrlUpdateVector;
89 bool ShouldSyncVisit(ui::PageTransition transition, URLRow* row);
94 bool CreateOrUpdateSyncNode(URLRow typed_url,
99 const URLRow& row,
106 static void WriteToTypedUrlSpecifics(const URLRow& url,
117 virtual bool FixupURLAndGetVisits(URLRow* url,
H A Dhistory_notifications.cc26 const URLRow& url_row,
H A Dexpire_history_backend_unittest.cc76 void EnsureURLInfoGone(const URLRow& row, bool expired);
194 URLRow url_row1(GURL("http://www.google.com/1"));
200 URLRow url_row2(GURL("http://www.google.com/2"));
207 URLRow url_row3(GURL("http://www.google.com/3"));
254 URLRow url_row1(url);
298 URLRow info;
306 void ExpireHistoryTest::EnsureURLInfoGone(const URLRow& row, bool expired) {
312 URLRow temp_row;
332 rows.begin(), rows.end(), history::URLRow::URLRowHasURL(row.url()));
347 history::URLRow
[all...]
H A Dhistory_database_unittest.cc41 URLRow url_row;
H A Dscored_history_match_unittest.cc35 // Convenience function to create a URLRow with basic data for |url|, |title|,
38 URLRow MakeURLRow(const char* url,
44 // Convenience function to set the word starts information from a URLRow's
46 void PopulateWordStarts(const URLRow& url_row, RowWordStarts* word_starts);
61 URLRow ScoredHistoryMatchTest::MakeURLRow(const char* url,
66 URLRow row(GURL(url), 0);
76 const URLRow& url_row, RowWordStarts* word_starts) {
119 URLRow row_a(MakeURLRow("http://fedcba", "abcd bcd", 3, 30, 1));
131 URLRow row_b(MakeURLRow("http://abcdef", "abcd bcd", 10, 30, 1));
142 URLRow row_
[all...]
H A Dtyped_url_syncable_service_unittest.cc24 using history::URLRow;
97 static URLRow MakeTypedUrlRow(const char* url,
104 static void AddNewestVisit(URLRow* url,
109 static void AddOldestVisit(URLRow* url,
114 static bool URLsEqual(URLRow& row,
144 URLRow TypedUrlSyncableServiceTest::MakeTypedUrlRow(
156 URLRow history_url(gurl, ++unique_url_id);
182 URLRow* url,
199 URLRow* url,
270 URLRow url_ro
[all...]
H A Dtyped_url_syncable_service.cc155 URLRow* row) {
202 URLRow row(*url);
249 URLRow* row) {
270 URLRow url,
304 const URLRow& row,
324 const URLRow& url,
411 URLRow* url,
H A Dhistory_backend_unittest.cc285 URLRow row;
386 const URLRow* row1,
387 const URLRow* row2 = NULL,
388 const URLRow* row3 = NULL) {
421 static URLRow CreateTestTypedURL() {
422 URLRow url_row(GURL("https://www.google.com/"));
431 static URLRow CreateAnotherTestTypedURL() {
432 URLRow url_row(GURL("https://maps.google.com/"));
441 static URLRow CreateTestNonTypedURL() {
442 URLRow url_ro
[all...]
H A Durl_index_private_data.h86 const URLRow& row,
259 const URLRow& row,
268 void AddRowWordsToIndex(const URLRow& row,
289 void RemoveRowFromIndex(const URLRow& row);
292 void RemoveRowWordsFromIndex(const URLRow& row);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dtyped_urls_helper.h24 bool GetUrlFromClient(int index, const GURL& url, history::URLRow* row);
72 bool CheckURLRowsAreEqual(const history::URLRow& left,
73 const history::URLRow& right);
/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_model_associator.h30 class URLRow;
124 const history::URLRow& url,
126 history::URLRow* new_url,
128 static void WriteToSyncNode(const history::URLRow& url,
144 static void WriteToTypedUrlSpecifics(const history::URLRow& url,
155 bool FixupURLAndGetVisits(history::URLRow* url,
162 const sync_pb::TypedUrlSpecifics& specifics, history::URLRow* url_row);
H A Dtyped_url_model_associator_unittest.cc27 static history::URLRow MakeTypedUrlRow(const char* url,
34 history::URLRow history_url(gurl);
60 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
92 history::URLRow row1(MakeTypedUrlRow("http://pie.com/", "pie",
97 history::URLRow new_row1(GURL("http://pie.com/"));
103 history::URLRow row2(MakeTypedUrlRow("http://pie.com/", "pie",
109 history::URLRow expected2(MakeTypedUrlRow("http://pie.com/", "pie",
111 history::URLRow new_row2(GURL("http://pie.com/"));
119 history::URLRow row
[all...]
H A Dtyped_url_change_processor.h35 class URLRow;
94 bool CreateOrUpdateSyncNode(history::URLRow typed_url,
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_typed_url_unittest.cc70 using history::URLRow;
98 MOCK_METHOD2(UpdateURL, bool(history::URLID id, const history::URLRow& url));
103 MOCK_METHOD2(GetURL, bool(const GURL& url_id, history::URLRow* url_row));
202 void AddTypedUrlSyncNode(const history::URLRow& url,
307 history::URLRow new_url(GURL(typed_url.url()));
328 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
338 static history::URLRow MakeTypedUrlEntry(const char* url,
347 URLRow history_url(gurl, ++unique_url_id);
419 history::URLRow native_entry
[all...]
/external/chromium_org/chrome/browser/
H A Dcustom_home_pages_table_model.h21 class URLRow;
75 const history::URLRow& row,
/external/chromium_org/chrome/browser/history/android/
H A Durls_sql_handler_unittest.cc60 URLRow url_row;
79 URLRow url_row;
98 URLRow url_row;
117 URLRow url_row;
137 URLRow url_row;
156 URLRow url_row;
176 URLRow url_row;
209 URLRow url_row;
247 URLRow url_row;
277 URLRow url_ro
[all...]
H A Dvisit_sql_handler_unittest.cc62 URLRow url_row;
81 URLRow url_row;
101 URLRow url_row;
120 URLRow url_row;
142 URLRow url_row;
167 URLRow url_row;
199 URLRow url_row;
231 URLRow url_row;
262 URLRow url_row;
289 URLRow url_ro
[all...]

Completed in 829 milliseconds

123