/external/chromium_org/chrome/browser/autocomplete/ |
history_provider_util.h | 20 HistoryMatch(const URLRow& url_info, 32 URLRow url_info;
|
history_provider_util.cc | 19 HistoryMatch::HistoryMatch(const URLRow& url_info,
|
/external/chromium/chrome/browser/history/ |
url_database.h | 56 bool GetURLRow(URLID url_id, URLRow* info); 60 bool GetAllTypedUrls(std::vector<history::URLRow>* urls); 66 URLID GetRowForURL(const GURL& url, URLRow* info); 73 bool UpdateURLRow(URLID url_id, const URLRow& info); 80 URLID AddURL(const URLRow& info) { 101 URLID AddTemporaryURL(const URLRow& row) { 135 bool GetNextURL(history::URLRow* r); 174 std::vector<URLRow>* results); 186 history::URLRow* info); 265 URLID AddURLInternal(const URLRow& info, bool is_temporary) [all...] |
url_database_unittest.cc | 22 bool IsURLRowEqual(const URLRow& a, 23 const URLRow& b) { 74 URLRow url_info1(url1); 83 URLRow url_info2(url2); 92 URLRow info; 108 URLRow info2; 127 URLRow url_info1(GURL("http://www.google.com/")); 166 URLRow url_info1(GURL("http://www.google.com/")); 190 URLRow url_no_match(GURL("http://www.url_no_match.com/")); 195 URLRow url_match_visit_count(GURL("http://www.url_match_visit_count.com/")) [all...] |
history_notifications.h | 34 URLRow row; 49 std::vector<URLRow> changed_urls;
|
history_types.cc | 14 // URLRow ---------------------------------------------------------------------- 16 URLRow::URLRow() { 20 URLRow::URLRow(const GURL& url) : url_(url) { 25 URLRow::URLRow(const GURL& url, URLID id) : url_(url) { 32 URLRow::~URLRow() { 35 URLRow& URLRow::operator=(const URLRow& other) [all...] |
history_types.h | 47 // URLRow --------------------------------------------------------------------- 63 class URLRow { 65 URLRow(); 67 explicit URLRow(const GURL& url); 69 // We need to be able to set the id of a URLRow that's being passed through 71 URLRow(const GURL& url, URLID id); 73 virtual ~URLRow(); 74 URLRow& operator=(const URLRow& other); 121 // Swaps the contents of this URLRow with another, which allows it to b [all...] |
/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); 80 URLID AddURL(const URLRow& info) { 101 URLID AddTemporaryURL(const URLRow& row) { 135 bool GetNextURL(history::URLRow* r); 178 history::URLRow* info); 269 URLID AddURLInternal(const URLRow& info, bool is_temporary); 271 // Convenience to fill a history::URLRow. Must be in sync with the fields in 273 static void FillURLRow(sql::Statement& s, URLRow* i) [all...] |
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); 82 URLRow url_info2(url2); 91 URLRow info; 107 URLRow info2; 126 URLRow url_info1(GURL("http://www.google.com/")); 165 URLRow url_info1(GURL("http://www.google.com/")); 189 URLRow url_no_match(GURL("http://www.url_no_match.com/")); 194 URLRow url_match_visit_count(GURL("http://www.url_match_visit_count.com/")) [all...] |
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...] |
/external/chromium/chrome/browser/autocomplete/ |
history_provider_util.h | 21 HistoryMatch(const URLRow& url_info, 28 URLRow url_info;
|
history_provider.h | 16 class URLRow;
|
history_provider_util.cc | 16 HistoryMatch::HistoryMatch(const URLRow& url_info,
|
/external/chromium_org/chrome/browser/sync/glue/ |
typed_url_model_associator.h | 30 class URLRow; 49 typedef std::vector<std::pair<history::URLID, history::URLRow> > 128 const history::URLRow& url, 130 history::URLRow* new_url, 132 static void WriteToSyncNode(const history::URLRow& url, 148 static void WriteToTypedUrlSpecifics(const history::URLRow& url, 159 bool FixupURLAndGetVisits(history::URLRow* url, 166 const sync_pb::TypedUrlSpecifics& specifics, history::URLRow* url_row);
|
typed_url_model_associator_unittest.cc | 26 static history::URLRow MakeTypedUrlRow(const char* url, 33 history::URLRow history_url(gurl); 59 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 row3(MakeTypedUrlRow("http://pie.com/", "pie" [all...] |
typed_url_change_processor.h | 35 class URLRow; 94 bool CreateOrUpdateSyncNode(history::URLRow typed_url,
|
/external/chromium/chrome/browser/sync/ |
profile_sync_service_typed_url_unittest.cc | 49 using history::URLRow; 78 MOCK_METHOD1(GetAllTypedURLs, bool(std::vector<history::URLRow>* entries)); 81 MOCK_METHOD2(UpdateURL, bool(history::URLID id, const history::URLRow& url)); 86 MOCK_METHOD2(GetURL, bool(const GURL& url_id, history::URLRow* url_row)); 200 void AddTypedUrlSyncNode(const history::URLRow& url, 214 void GetTypedUrlsFromSyncDB(std::vector<history::URLRow>* urls) { 228 history::URLRow new_url(GURL(typed_url.url())); 250 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) { 259 static history::URLRow MakeTypedUrlEntry(const char* url [all...] |
/external/chromium/chrome/browser/sync/glue/ |
typed_url_model_associator_unittest.cc | 18 static history::URLRow MakeTypedUrlRow(const char* url, 25 history::URLRow history_url(gurl); 51 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) { 62 history::URLRow row1(MakeTypedUrlRow("http://pie.com/", "pie", 67 history::URLRow new_row1(GURL("http://pie.com/")); 74 history::URLRow row2(MakeTypedUrlRow("http://pie.com/", "pie", 80 history::URLRow expected2(MakeTypedUrlRow("http://pie.com/", "pie", 82 history::URLRow new_row2(GURL("http://pie.com/")); 90 history::URLRow row3(MakeTypedUrlRow("http://pie.com/", "pie" [all...] |
typed_url_model_associator.h | 26 class URLRow; 50 typedef std::vector<history::URLRow> TypedUrlVector; 51 typedef std::vector<std::pair<history::URLID, history::URLRow> > 116 const history::URLRow& url, 118 history::URLRow* new_url, 120 static void WriteToSyncNode(const history::URLRow& url,
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
typed_urls_helper.h | 24 bool GetUrlFromClient(int index, const GURL& url, history::URLRow* row); 68 void AssertURLRowsAreEqual(const history::URLRow& left, 69 const history::URLRow& right);
|
/external/chromium_org/chrome/browser/sync/ |
profile_sync_service_typed_url_unittest.cc | 61 using history::URLRow; 82 MOCK_METHOD2(UpdateURL, bool(history::URLID id, const history::URLRow& url)); 87 MOCK_METHOD2(GetURL, bool(const GURL& url_id, history::URLRow* url_row)); 166 void AddTypedUrlSyncNode(const history::URLRow& url, 268 history::URLRow new_url(GURL(typed_url.url())); 289 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) { 299 static history::URLRow MakeTypedUrlEntry(const char* url, 308 URLRow history_url(gurl, ++unique_url_id); 380 history::URLRow native_entry1(MakeTypedUrlEntry("http://foo.com", "bar" [all...] |
/external/chromium/chrome/browser/importer/ |
external_process_importer_client.h | 25 class URLRow; 74 const std::vector<history::URLRow>& history_rows_group, 116 std::vector<history::URLRow> history_rows_;
|
profile_import_process_client.h | 20 class URLRow; 54 const std::vector<history::URLRow>& history_rows_group,
|
safari_importer.h | 31 class URLRow; 93 void ParseHistoryItems(std::vector<history::URLRow>* history_items);
|