OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:main_db_
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/history/
expire_history_backend_unittest.cc
104
scoped_ptr<HistoryDatabase>
main_db_
;
member in class:history::ExpireHistoryTest
124
main_db_
.reset(new HistoryDatabase);
125
if (
main_db_
->Init(history_name) != sql::INIT_OK)
126
main_db_
.reset();
133
expirer_.SetDatabases(
main_db_
.get(), thumb_db_.get());
146
main_db_
.reset();
177
if (!
main_db_
.get())
197
url_ids[0] =
main_db_
->AddURL(url_row1);
204
url_ids[1] =
main_db_
->AddURL(url_row2);
210
url_ids[2] =
main_db_
->AddURL(url_row3)
[
all
...]
expire_history_backend.cc
133
main_db_
(NULL),
144
main_db_
= main_db;
153
if (!
main_db_
)
161
if (!
main_db_
->GetRowForURL(*url, &url_row))
168
main_db_
->GetVisitsForURL(url_row.id(), &visits);
190
if (!
main_db_
)
195
main_db_
->GetAllVisitsInRange(begin_time, end_time, 0, &visits);
200
url_ids.insert(
main_db_
->GetRowForURL(*url, NULL));
222
if (!
main_db_
)
227
main_db_
->GetVisitsForTimes(times, &visits)
[
all
...]
expire_history_backend.h
164
// Assumes the
main_db_
is non-NULL.
253
HistoryDatabase*
main_db_
; // Main history database.
member in class:history::ExpireHistoryBackend
Completed in 146 milliseconds