HomeSort by relevance Sort by last modified time
    Searched refs:SessionBackend (Results 1 - 18 of 18) sorted by null

  /external/chromium/chrome/browser/sessions/
session_backend.h 20 // SessionBackend -------------------------------------------------------------
22 // SessionBackend is the backend used by BaseSessionService. It is responsible
31 // SessionBackend does not use the id in anyway, that is used by
33 class SessionBackend : public base::RefCountedThreadSafe<SessionBackend> {
42 // Creates a SessionBackend. This method is invoked on the MAIN thread,
49 SessionBackend(BaseSessionService::SessionType type,
97 friend class base::RefCountedThreadSafe<SessionBackend>;
99 ~SessionBackend();
141 DISALLOW_COPY_AND_ASSIGN(SessionBackend);
    [all...]
session_backend_unittest.cc 54 scoped_refptr<SessionBackend> backend(
55 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
64 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
73 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
102 scoped_refptr<SessionBackend> backend(
103 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
127 scoped_refptr<SessionBackend> backend(
128 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
132 SessionBackend::kFileReadBufferSize + 100;
143 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_)
    [all...]
session_backend.cc 45 buffer_(SessionBackend::kFileReadBufferSize, 0),
185 // SessionBackend -------------------------------------------------------------
196 const int SessionBackend::kFileReadBufferSize = 1024;
198 SessionBackend::SessionBackend(BaseSessionService::SessionType type,
208 void SessionBackend::Init() {
220 void SessionBackend::AppendCommands(
240 void SessionBackend::ReadLastSessionCommands(
251 bool SessionBackend::ReadLastSessionCommandsImpl(
258 void SessionBackend::DeleteLastSession()
    [all...]
base_session_service.h 18 class SessionBackend;
29 // SessionBackend.
84 SessionBackend* backend() const { return backend_; }
172 scoped_refptr<SessionBackend> backend_;
session_service_test_helper.h 14 class SessionBackend;
68 SessionBackend* backend();
base_session_service.cc 75 backend_ = new SessionBackend(type,
92 backend(), &SessionBackend::DeleteLastSession));
124 backend(), &SessionBackend::AppendCommands,
264 backend(), &SessionBackend::ReadLastSessionCommands, request_wrapper));
280 &SessionBackend::ReadCurrentSessionCommands,
session_service_test_helper.cc 95 SessionBackend* SessionServiceTestHelper::backend() {
session_service_unittest.cc 128 SessionBackend* backend() { return helper_.backend(); }
session_service.cc 175 backend(), &SessionBackend::MoveCurrentSessionToLastSession));
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_backend.h 20 // SessionBackend -------------------------------------------------------------
22 // SessionBackend is the backend used by BaseSessionService. It is responsible
31 // SessionBackend does not use the id in anyway, that is used by
33 class SessionBackend : public base::RefCountedThreadSafe<SessionBackend> {
42 // Creates a SessionBackend. This method is invoked on the MAIN thread,
49 SessionBackend(BaseSessionService::SessionType type,
94 friend class base::RefCountedThreadSafe<SessionBackend>;
96 ~SessionBackend();
138 DISALLOW_COPY_AND_ASSIGN(SessionBackend);
    [all...]
session_backend_unittest.cc 54 scoped_refptr<SessionBackend> backend(
55 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
64 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
73 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
102 scoped_refptr<SessionBackend> backend(
103 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
127 scoped_refptr<SessionBackend> backend(
128 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
132 SessionBackend::kFileReadBufferSize + 100;
143 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_)
    [all...]
session_backend.cc 46 buffer_(SessionBackend::kFileReadBufferSize, 0),
191 // SessionBackend -------------------------------------------------------------
202 const int SessionBackend::kFileReadBufferSize = 1024;
204 SessionBackend::SessionBackend(BaseSessionService::SessionType type,
214 void SessionBackend::Init() {
226 void SessionBackend::AppendCommands(
246 void SessionBackend::ReadLastSessionCommands(
259 bool SessionBackend::ReadLastSessionCommandsImpl(
266 void SessionBackend::DeleteLastSession()
    [all...]
session_service_test_helper.h 15 class SessionBackend;
77 SessionBackend* backend();
base_session_service.h 23 class SessionBackend;
33 // SessionBackend.
64 SessionBackend* backend() const { return backend_.get(); }
151 // Invokes SessionBackend::ReadLastSessionCommands with callback on the
153 // If testing, SessionBackend::ReadLastSessionCommands is invoked directly.
173 scoped_refptr<SessionBackend> backend_;
base_session_service.cc 88 backend_ = new SessionBackend(type, profile_ ? profile_->GetPath() : path);
98 base::Bind(&SessionBackend::DeleteLastSession, backend()));
128 base::Bind(&SessionBackend::AppendCommands, backend(),
291 base::Bind(&SessionBackend::ReadLastSessionCommands, backend(),
session_service_test_helper.cc 104 SessionBackend* SessionServiceTestHelper::backend() {
session_service_unittest.cc 161 SessionBackend* backend() { return helper_.backend(); }
    [all...]
session_service.cc 231 FROM_HERE, base::Bind(&SessionBackend::MoveCurrentSessionToLastSession,
    [all...]

Completed in 591 milliseconds