HomeSort by relevance Sort by last modified time
    Searched refs:URLRow (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/autocomplete/
history_provider_util.h 20 HistoryMatch(const URLRow& url_info,
32 URLRow url_info;
history_provider_util.cc 18 HistoryMatch::HistoryMatch(const URLRow& url_info,
  /external/chromium_org/chrome/browser/history/
url_database.h 56 bool GetURLRow(URLID url_id, URLRow* info);
66 URLID GetRowForURL(const GURL& url, URLRow* info);
73 bool UpdateURLRow(URLID url_id, const URLRow& info);
81 URLID AddURL(const URLRow& info) {
89 bool InsertOrUpdateURLRowByID(const URLRow& info);
108 URLID AddTemporaryURL(const URLRow& row) {
139 bool GetNextURL(history::URLRow* r);
182 history::URLRow* info);
275 URLID AddURLInternal(const URLRow& info, bool is_temporary);
277 // Convenience to fill a history::URLRow. Must be in sync with the fields i
    [all...]
history_notifications.h 26 // 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.
typed_url_syncable_service.h 34 class URLRow;
60 void OnUrlVisited(content::PageTransition transition, URLRow* row);
69 typedef std::vector<std::pair<URLID, URLRow> > TypedUrlUpdateVector;
89 bool ShouldSyncVisit(content::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,
url_database_unittest.cc 21 bool IsURLRowEqual(const URLRow& a,
22 const URLRow& b) {
73 URLRow url_info1(url1);
83 URLRow url_info2(url2);
92 URLRow info;
108 URLRow info2;
122 URLRow url_info3(url3);
154 URLRow url_info1(GURL("http://www.google.com/"));
193 URLRow url_info1(GURL("http://www.google.com/"));
218 URLRow url_no_match(GURL("http://www.url_no_match.com/"))
    [all...]
in_memory_history_backend.h 43 class URLRow;
78 void OnURLVisitedOrModified(const URLRow& url_row);
history_types.cc 15 // URLRow ----------------------------------------------------------------------
17 URLRow::URLRow() {
21 URLRow::URLRow(const GURL& url) : url_(url) {
26 URLRow::URLRow(const GURL& url, URLID id) : url_(url) {
33 URLRow::~URLRow() {
36 URLRow& URLRow::operator=(const URLRow& other)
    [all...]
history_notifications.cc 26 const URLRow& url_row,
history_types.h 52 // URLRow ---------------------------------------------------------------------
68 class URLRow {
70 URLRow();
72 explicit URLRow(const GURL& url);
74 // We need to be able to set the id of a URLRow that's being passed through
76 URLRow(const GURL& url, URLID id);
78 virtual ~URLRow();
79 URLRow& operator=(const URLRow& other);
140 // Helper functor that determines if an URLRow refers to a given URL
    [all...]
expire_history_backend_unittest.cc 79 void EnsureURLInfoGone(const URLRow& row, bool expired);
197 URLRow url_row1(GURL("http://www.google.com/1"));
203 URLRow url_row2(GURL("http://www.google.com/2"));
210 URLRow url_row3(GURL("http://www.google.com/3"));
257 URLRow url_row1(url);
301 URLRow info;
309 void ExpireHistoryTest::EnsureURLInfoGone(const URLRow& row, bool expired) {
315 URLRow temp_row;
335 rows.begin(), rows.end(), history::URLRow::URLRowHasURL(row.url()));
350 history::URLRow::URLRowHasURL(row.url())) =
    [all...]
history_database_unittest.cc 41 URLRow url_row;
scored_history_match_unittest.cc 35 // 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_c(MakeURLRow("http://abcdef", "abcd bcd", 3, 10, 1))
    [all...]
typed_url_syncable_service.cc 155 URLRow* row) {
202 URLRow row(*url);
249 URLRow* row) {
270 URLRow url,
304 const URLRow& row,
324 const URLRow& url,
411 URLRow* url,
url_index_private_data.h 87 const URLRow& row,
262 const URLRow& row,
270 void AddRowWordsToIndex(const URLRow& row,
291 void RemoveRowFromIndex(const URLRow& row);
294 void RemoveRowWordsFromIndex(const URLRow& row);
history_backend_unittest.cc 295 URLRow row;
452 const URLRow* row1,
453 const URLRow* row2 = NULL,
454 const URLRow* row3 = NULL) {
487 static URLRow CreateTestTypedURL() {
488 URLRow url_row(GURL("https://www.google.com/"));
497 static URLRow CreateAnotherTestTypedURL() {
498 URLRow url_row(GURL("https://maps.google.com/"));
507 static URLRow CreateTestNonTypedURL() {
508 URLRow url_row(GURL("https://news.google.com/"))
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator.h 30 class URLRow;
47 typedef std::vector<std::pair<history::URLID, history::URLRow> >
126 const history::URLRow& url,
128 history::URLRow* new_url,
130 static void WriteToSyncNode(const history::URLRow& url,
146 static void WriteToTypedUrlSpecifics(const history::URLRow& url,
157 bool FixupURLAndGetVisits(history::URLRow* url,
164 const sync_pb::TypedUrlSpecifics& specifics, history::URLRow* url_row);
typed_url_model_associator_unittest.cc 27 static history::URLRow MakeTypedUrlRow(const char* url,
34 history::URLRow history_url(gurl);
60 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
93 history::URLRow row1(MakeTypedUrlRow("http://pie.com/", "pie",
98 history::URLRow new_row1(GURL("http://pie.com/"));
104 history::URLRow row2(MakeTypedUrlRow("http://pie.com/", "pie",
110 history::URLRow expected2(MakeTypedUrlRow("http://pie.com/", "pie",
112 history::URLRow new_row2(GURL("http://pie.com/"));
120 history::URLRow row3(MakeTypedUrlRow("http://pie.com/", "pie"
    [all...]
typed_url_change_processor.h 35 class URLRow;
94 bool CreateOrUpdateSyncNode(history::URLRow typed_url,
  /external/chromium_org/chrome/browser/sync/test/integration/
typed_urls_helper.h 24 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/
profile_sync_service_typed_url_unittest.cc 70 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));
189 void AddTypedUrlSyncNode(const history::URLRow& url,
295 history::URLRow new_url(GURL(typed_url.url()));
316 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
326 static history::URLRow MakeTypedUrlEntry(const char* url,
335 URLRow history_url(gurl, ++unique_url_id);
407 history::URLRow native_entry1(MakeTypedUrlEntry("http://foo.com", "bar"
    [all...]
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.h 21 class URLRow;
75 const history::URLRow& row,
  /external/chromium_org/chrome/browser/history/android/
urls_sql_handler_unittest.cc 60 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_row
    [all...]
visit_sql_handler_unittest.cc 62 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_row
    [all...]
urls_sql_handler.cc 31 URLRow url_row(row->url());
101 URLRow url_row;
105 URLRow update_row = url_row;

Completed in 607 milliseconds

1 2 3