OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HistoryService
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/history/
history.cc
7
// represented by HistoryBackend. The
HistoryService
's job is to dispatch to
12
//
HistoryService
<----------------> HistoryBackend
69
class
HistoryService
::BackendDelegate : public HistoryBackend::Delegate {
71
explicit BackendDelegate(
HistoryService
* history_service)
79
&
HistoryService
::NotifyProfileError, init_status));
86
&
HistoryService
::SetInMemoryBackend, backend));
101
&
HistoryService
::BroadcastNotifications, type, details));
106
&
HistoryService
::OnDBLoaded));
111
&
HistoryService
::StartTopSitesMigration));
115
scoped_refptr<
HistoryService
> history_service_
[
all
...]
history.h
66
// thread. HistoryDBTask is scheduled using
HistoryService
::ScheduleDBTask.
96
class
HistoryService
: public CancelableRequestProvider,
98
public base::RefCountedThreadSafe<
HistoryService
> {
108
explicit
HistoryService
(Profile* profile);
110
HistoryService
();
579
~
HistoryService
();
591
friend class base::RefCountedThreadSafe<
HistoryService
>;
[
all
...]
/external/chromium_org/chrome/browser/history/
history_service.cc
7
// represented by HistoryBackend. The
HistoryService
's job is to dispatch to
12
//
HistoryService
<----------------> HistoryBackend
131
class
HistoryService
::BackendDelegate : public HistoryBackend::Delegate {
134
const base::WeakPtr<
HistoryService
>& history_service,
147
base::Bind(&
HistoryService
::NotifyProfileError, history_service_,
157
base::Bind(&
HistoryService
::SetInMemoryBackend, history_service_,
173
base::Bind(&
HistoryService
::BroadcastNotificationsHelper,
180
base::Bind(&
HistoryService
::OnDBLoaded, history_service_,
188
base::Bind(&
HistoryService
::NotifyVisitDBObserversOnAddVisit,
193
const base::WeakPtr<
HistoryService
> history_service_
[
all
...]
history_service.h
85
class
HistoryService
: public CancelableRequestProvider,
95
explicit
HistoryService
(Profile* profile);
97
HistoryService
();
99
virtual ~
HistoryService
();
579
base::WeakPtr<
HistoryService
> AsWeakPtr();
608
friend class base::RefCountedThreadSafe<
HistoryService
>;
[
all
...]
Completed in 185 milliseconds