OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PinnedTabService
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/ui/tabs/
pinned_tab_service.h
15
//
PinnedTabService
is responsible for updating preferences with the set of
16
// pinned tabs to restore at startup.
PinnedTabService
listens for the
18
class
PinnedTabService
: public content::NotificationObserver,
21
explicit
PinnedTabService
(Profile* profile);
40
DISALLOW_COPY_AND_ASSIGN(
PinnedTabService
);
pinned_tab_service_factory.cc
12
PinnedTabService
* PinnedTabServiceFactory::GetForProfile(
14
return static_cast<
PinnedTabService
*>(
24
"
PinnedTabService
",
33
return new
PinnedTabService
(static_cast<Profile*>(profile));
pinned_tab_service_factory.h
12
class
PinnedTabService
;
17
// associated
PinnedTabService
.
20
// Returns the
PinnedTabService
that tracks pinning changes for |profile|.
21
static
PinnedTabService
* GetForProfile(Profile* profile);
pinned_tab_service_unittest.cc
22
return new
PinnedTabService
(static_cast<Profile*>(profile));
25
PinnedTabService
* BuildForProfile(Profile* profile) {
26
return static_cast<
PinnedTabService
*>(
43
PinnedTabService
* pinned_tab_service_;
pinned_tab_service.cc
30
PinnedTabService
::
PinnedTabService
(Profile* profile)
44
void
PinnedTabService
::Observe(int type,
Completed in 190 milliseconds