/external/chromium_org/chrome/browser/history/ |
history_db_task.h | 12 class HistoryBackend; 17 // When HistoryBackend processes the task it invokes RunOnDBThread. Once the 27 virtual bool RunOnDBThread(HistoryBackend* backend, HistoryDatabase* db) = 0;
|
history_backend_android.cc | 11 void HistoryBackend::InsertHistoryAndBookmark( 24 void HistoryBackend::QueryHistoryAndBookmarks( 41 void HistoryBackend::UpdateHistoryAndBookmarks( 59 void HistoryBackend::DeleteHistoryAndBookmarks( 75 void HistoryBackend::DeleteHistory( 93 void HistoryBackend::MoveStatement( 114 void HistoryBackend::CloseStatement(AndroidStatement* statement) { 120 void HistoryBackend::InsertSearchTerm(scoped_refptr<InsertRequest> request, 132 void HistoryBackend::UpdateSearchTerms( 149 void HistoryBackend::DeleteSearchTerms [all...] |
history_backend.cc | 56 /* The HistoryBackend consists of two components: 132 explicit CommitLaterTask(HistoryBackend* history_backend) 152 scoped_refptr<HistoryBackend> history_backend_; 155 // HistoryBackend::QueryURLResult ---------------------------------------------- 157 HistoryBackend::QueryURLResult::QueryURLResult() : success(false) { 160 HistoryBackend::QueryURLResult::~QueryURLResult() { 163 // HistoryBackend -------------------------------------------------------------- 165 HistoryBackend::HistoryBackend(const base::FilePath& history_dir, 178 HistoryBackend::~HistoryBackend() [all...] |
history_service.cc | 7 // represented by HistoryBackend. The HistoryService's job is to dispatch to 12 // HistoryService <----------------> HistoryBackend 66 using history::HistoryBackend; 85 const HistoryBackend::QueryURLResult* result) { 127 class HistoryService::BackendDelegate : public HistoryBackend::Delegate { 255 // HistoryBackend::Closing will release. This means if we scheduled a call 256 // to HistoryBackend::Closing and *then* released our backend reference, 267 // TODO(ajwong): Cleanup HistoryBackend lifetime issues. 271 base::Bind(&HistoryBackend::Closing, history_backend_.get()); 274 HistoryBackend* raw_ptr = history_backend_.get() [all...] |
typed_url_syncable_service.h | 33 class HistoryBackend; 40 explicit TypedUrlSyncableService(HistoryBackend* history_backend); 58 // Called directly by HistoryBackend when local url data changes. 124 HistoryBackend* const history_backend_;
|
delete_directive_handler.cc | 127 virtual bool RunOnDBThread(history::HistoryBackend* backend, 138 history::HistoryBackend* history_backend, 145 history::HistoryBackend* history_backend, 154 history::HistoryBackend* backend, 186 history::HistoryBackend* history_backend, 236 history::HistoryBackend* history_backend,
|
history_backend.h | 60 class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, 63 // Interface implemented by the owner of the HistoryBackend object. Normally, 120 HistoryBackend(const base::FilePath& history_dir, 437 // state into the HistoryBackend databases. Close all of the databases managed 438 // HistoryBackend as there are no provisions for accessing the other databases 439 // managed by HistoryBackend when the history database cannot be accessed. 471 virtual ~HistoryBackend(); 474 friend class base::RefCountedThreadSafe<HistoryBackend>; 568 // Closes all databases managed by HistoryBackend. Commits any pendin [all...] |
in_memory_url_index.h | 163 virtual bool RunOnDBThread(HistoryBackend* backend,
|
history_types.h | 35 class HistoryBackend; 162 friend class HistoryBackend; 269 // used by HistoryBackend::AddVisits() to create new visits for a URL. 317 friend class HistoryBackend; 322 // These values are typically set by HistoryBackend.
|
history_service.h | 64 class HistoryBackend; 155 // Returns a pointer to the TypedUrlSyncableService owned by HistoryBackend. 594 friend class history::HistoryBackend; [all...] |
typed_url_syncable_service_unittest.cc | 22 using history::HistoryBackend; 39 class TestHistoryBackend : public HistoryBackend { 41 TestHistoryBackend() : HistoryBackend(base::FilePath(), NULL, NULL) {} 43 // HistoryBackend test implementation. 139 scoped_refptr<HistoryBackend> fake_history_backend_;
|
in_memory_url_index.cc | 70 HistoryBackend* backend,
|
/external/chromium_org/chrome/browser/sync/glue/ |
typed_url_data_type_controller.h | 19 class HistoryBackend; 42 void SetBackend(history::HistoryBackend* backend); 58 history::HistoryBackend* backend_;
|
typed_url_change_processor.h | 31 class HistoryBackend; 50 history::HistoryBackend* history_backend, 106 history::HistoryBackend* history_backend_;
|
typed_url_model_associator.h | 29 class HistoryBackend; 54 history::HistoryBackend* history_backend, 186 history::HistoryBackend* history_backend_;
|
history_model_worker.cc | 25 virtual bool RunOnDBThread(history::HistoryBackend* backend, 49 virtual bool RunOnDBThread(history::HistoryBackend* backend,
|
typed_url_data_type_controller.cc | 41 virtual bool RunOnDBThread(history::HistoryBackend* backend, 111 void TypedUrlDataTypeController::SetBackend(history::HistoryBackend* backend) {
|
/external/chromium_org/chrome/browser/history/android/ |
android_history_provider_service.cc | 12 using history::HistoryBackend; 35 &HistoryBackend::QueryHistoryAndBookmarks, NULL, request, 56 &HistoryBackend::UpdateHistoryAndBookmarks, NULL, request, row, 76 &HistoryBackend::DeleteHistoryAndBookmarks, NULL, request, 95 &HistoryBackend::InsertHistoryAndBookmark, NULL, request, values); 114 &HistoryBackend::DeleteHistory, NULL, request, selection, 135 &HistoryBackend::MoveStatement, NULL, request, statement, 149 &HistoryBackend::CloseStatement, statement); 166 &HistoryBackend::InsertSearchTerm, NULL, request, row); 186 &HistoryBackend::UpdateSearchTerms, NULL, request, row, selection [all...] |
android_provider_backend.h | 52 HistoryBackend::Delegate* delegate); 358 HistoryBackend::Delegate* delegate_;
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_url_provider.h | 27 class HistoryBackend; 47 // HistoryBackend::ScheduleAutocomplete 215 void ExecuteWithDB(history::HistoryBackend* backend, 248 void DoAutocomplete(history::HistoryBackend* backend, 302 void CullRedirects(history::HistoryBackend* backend,
|
/external/chromium_org/chrome/browser/sync/ |
profile_sync_components_factory.h | 47 class HistoryBackend; 107 history::HistoryBackend* history_backend,
|
profile_sync_components_factory_mock.h | 62 history::HistoryBackend* history_backend,
|
profile_sync_components_factory_impl.h | 81 history::HistoryBackend* history_backend,
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
typed_urls_helper.cc | 30 virtual bool RunOnDBThread(history::HistoryBackend* backend, 49 virtual bool RunOnDBThread(history::HistoryBackend* backend, 74 virtual bool RunOnDBThread(history::HistoryBackend* backend, 100 virtual bool RunOnDBThread(history::HistoryBackend* backend, 124 virtual bool RunOnDBThread(history::HistoryBackend* backend,
|
/external/chromium_org/chrome/browser/ui/sync/ |
profile_signin_confirmation_helper.cc | 40 virtual bool RunOnDBThread(history::HistoryBackend* backend,
|