OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SessionBackend
(Results
1 - 2
of
2
) 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.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
...]
Completed in 22 milliseconds