OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BaseSessionService
(Results
1 - 10
of
10
) sorted by null
/external/chromium/chrome/browser/sessions/
base_session_service.h
26
//
BaseSessionService
is the super class of both tab restore service and
30
class
BaseSessionService
: public CancelableRequestProvider,
31
public base::RefCountedThreadSafe<
BaseSessionService
> {
40
// Creates a new
BaseSessionService
. After creation you need to invoke
45
BaseSessionService
(SessionType type,
79
friend class base::RefCountedThreadSafe<
BaseSessionService
>;
81
virtual ~
BaseSessionService
();
90
// in the vector are owned by
BaseSessionService
, until they are scheduled
178
ScopedRunnableMethodFactory<
BaseSessionService
> save_factory_;
190
DISALLOW_COPY_AND_ASSIGN(
BaseSessionService
);
[
all
...]
base_session_service.cc
19
BaseSessionService
::InternalGetCommandsRequest::~InternalGetCommandsRequest() {
23
//
BaseSessionService
---------------------------------------------------------
60
const int
BaseSessionService
::max_persist_navigation_count = 6;
62
BaseSessionService
::
BaseSessionService
(SessionType type,
84
BaseSessionService
::~
BaseSessionService
() {
87
void
BaseSessionService
::DeleteLastSession() {
96
void
BaseSessionService
::ScheduleCommand(SessionCommand* command) {
103
void
BaseSessionService
::StartSaveTimer()
[
all
...]
session_backend.h
22
// SessionBackend is the backend used by
BaseSessionService
. It is responsible
30
//
BaseSessionService
. A command consists of a unique id and a stream of bytes.
32
//
BaseSessionService
.
49
SessionBackend(
BaseSessionService
::SessionType type,
69
scoped_refptr<
BaseSessionService
::InternalGetCommandsRequest> request);
88
scoped_refptr<
BaseSessionService
::InternalGetCommandsRequest> request);
117
const
BaseSessionService
::SessionType type_;
session_backend.cc
54
bool Read(
BaseSessionService
::SessionType type,
88
bool SessionFileReader::Read(
BaseSessionService
::SessionType type,
107
if (type ==
BaseSessionService
::TAB_RESTORE) {
198
SessionBackend::SessionBackend(
BaseSessionService
::SessionType type,
241
scoped_refptr<
BaseSessionService
::InternalGetCommandsRequest> request) {
247
BaseSessionService
::InternalGetCommandsRequest::TupleType(
274
if (type_ ==
BaseSessionService
::TAB_RESTORE) {
294
scoped_refptr<
BaseSessionService
::InternalGetCommandsRequest> request) {
300
BaseSessionService
::InternalGetCommandsRequest::TupleType(
318
if (type_ ==
BaseSessionService
::TAB_RESTORE
[
all
...]
session_backend_unittest.cc
55
new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_));
64
backend = new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_);
73
backend = new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_);
103
new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_));
128
new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_));
143
backend = new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_);
162
new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_));
180
new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_));
195
backend = new SessionBackend(
BaseSessionService
::SESSION_RESTORE, path_);
session_types.h
81
// by
BaseSessionService
and SessionService.
86
friend class
BaseSessionService
;
tab_restore_service.h
37
class TabRestoreService : public
BaseSessionService
{
session_service.cc
73
: public
BaseSessionService
::InternalGetCommandsRequest {
78
:
BaseSessionService
::InternalGetCommandsRequest(callback),
133
:
BaseSessionService
(SESSION_RESTORE, profile, FilePath()),
143
:
BaseSessionService
(SESSION_RESTORE, NULL, save_path),
430
BaseSessionService
::InternalGetCommandsRequest::TupleType(
444
BaseSessionService
::Save();
[
all
...]
session_service.h
50
class SessionService : public
BaseSessionService
,
175
// Overridden from
BaseSessionService
because we want some UMA reporting on
tab_restore_service.cc
187
:
BaseSessionService
(
BaseSessionService
::TAB_RESTORE, profile,
474
BaseSessionService
::Save();
[
all
...]
Completed in 94 milliseconds