OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TabRestoreService
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/sessions/
tab_restore_service.cc
11
TabRestoreService
::TimeFactory::~TimeFactory() {}
18
TabRestoreService
::Entry::Entry()
23
TabRestoreService
::Entry::Entry(Type type)
28
TabRestoreService
::Entry::~Entry() {}
32
TabRestoreService
::Tab::Tab()
40
TabRestoreService
::Tab::~Tab() {
45
TabRestoreService
::Window::Window() : Entry(WINDOW), selected_tab_index(-1) {
48
TabRestoreService
::Window::~Window() {
51
//
TabRestoreService
----------------------------------------------------------
53
TabRestoreService
::~TabRestoreService()
[
all
...]
tab_restore_service.h
30
//
TabRestoreService
is responsible for maintaining the most recently closed
32
//
TabRestoreService
::CreateHistoricalTab is invoked and a Tab is created to
36
// To restore a tab/window from the
TabRestoreService
invoke RestoreEntryById
39
// To listen for changes to the set of entries managed by the
TabRestoreService
41
class
TabRestoreService
: public BrowserContextKeyedService {
127
virtual ~
TabRestoreService
();
129
// Adds/removes an observer.
TabRestoreService
does not take ownership of
/external/chromium/chrome/browser/sessions/
tab_restore_service.cc
34
TabRestoreService
::TimeFactory::~TimeFactory() {}
41
TabRestoreService
::Entry::Entry()
46
TabRestoreService
::Entry::Entry(Type type)
51
TabRestoreService
::Entry::~Entry() {}
53
//
TabRestoreService
----------------------------------------------------------
56
const size_t
TabRestoreService
::kMaxEntries = 10;
118
typedef std::map<SessionID::id_type,
TabRestoreService
::Entry*> IDToEntry;
125
std::vector<
TabRestoreService
::Entry*>* entries) {
140
if (i->second->type ==
TabRestoreService
::WINDOW) {
141
TabRestoreService
::Window* window
[
all
...]
tab_restore_service.h
26
//
TabRestoreService
is responsible for maintaining the most recently closed
28
//
TabRestoreService
::CreateHistoricalTab is invoked and a Tab is created to
32
// To restore a tab/window from the
TabRestoreService
invoke RestoreEntryById
35
// To listen for changes to the set of entries managed by the
TabRestoreService
37
class
TabRestoreService
: public BaseSessionService {
117
// Creates a new
TabRestoreService
and provides an object that provides the
118
// current time. The
TabRestoreService
does not take ownership of the
120
explicit
TabRestoreService
(Profile* profile,
123
// Adds/removes an observer.
TabRestoreService
does not take ownership of
175
virtual ~
TabRestoreService
();
[
all
...]
Completed in 477 milliseconds