HomeSort by relevance Sort by last modified time
    Searched full:history_db (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/chrome/browser/history/android/
android_cache_database_unittest.cc 46 HistoryDatabase history_db; local
51 ASSERT_EQ(sql::INIT_OK, history_db.Init(history_db_name));
53 history_db.BeginTransaction();
54 history_db.BeginTransaction();
55 history_db.BeginTransaction();
56 int transaction_nesting = history_db.transaction_nesting();
58 history_db.InitAndroidCacheDatabase(android_cache_db_name));
60 EXPECT_EQ(transaction_nesting, history_db.transaction_nesting());
android_urls_sql_handler.h 17 explicit AndroidURLsSQLHandler(HistoryDatabase* history_db);
urls_sql_handler.h 17 explicit UrlsSQLHandler(HistoryDatabase* history_db);
android_urls_sql_handler.cc 20 AndroidURLsSQLHandler::AndroidURLsSQLHandler(HistoryDatabase* history_db)
22 history_db_(history_db) {
visit_sql_handler.h 21 explicit VisitSQLHandler(HistoryDatabase* history_db);
visit_sql_handler.cc 23 VisitSQLHandler::VisitSQLHandler(HistoryDatabase* history_db)
25 history_db_(history_db) {
urls_sql_handler.cc 22 UrlsSQLHandler::UrlsSQLHandler(HistoryDatabase* history_db)
24 history_db_(history_db) {
android_provider_backend.h 50 HistoryDatabase* history_db,
167 ScopedTransaction(HistoryDatabase* history_db,
android_provider_backend.cc 126 HistoryDatabase* history_db,
128 : history_db_(history_db),
187 HistoryDatabase* history_db,
192 db_(&history_db->GetDB()),
193 history_db_(history_db),
    [all...]
android_provider_backend_unittest.cc 1990 HistoryDatabase history_db; local
2067 HistoryDatabase history_db; local
    [all...]
  /external/chromium_org/chrome/browser/history/
history_database_unittest.cc 36 HistoryDatabase history_db; local
37 ASSERT_EQ(sql::INIT_OK, history_db.Init(db_file));
39 ASSERT_TRUE(history_db.InitURLEnumeratorForEverything(&url_enumerator));
url_index_private_data.h 121 // database in |history_db|. Returns the new URLIndexPrivateData which on
126 HistoryDatabase* history_db,
251 // |history_db| is not NULL then this function uses the history database
253 // only be used on the historyDB thread. If |history_db| is NULL, then
257 bool IndexRow(HistoryDatabase* history_db,
in_memory_url_index.h 205 // Rebuilds the history index from the history database in |history_db|.
207 void RebuildFromHistory(HistoryDatabase* history_db);
url_index_private_data.cc 439 HistoryDatabase* history_db,
442 if (!history_db)
450 if (!history_db->InitURLEnumeratorForSignificant(&history_enum))
455 history_db, NULL, row, languages, scheme_whitelist, NULL);
687 HistoryDatabase* history_db,
724 if (history_db) {
732 if (history_db->GetMostRecentVisitsForURL(row_id,
    [all...]
in_memory_url_index.cc 342 void InMemoryURLIndex::RebuildFromHistory(HistoryDatabase* history_db) {
344 private_data_ = URLIndexPrivateData::RebuildFromHistory(history_db,

Completed in 151 milliseconds