OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TabsWindowsAPI
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_windows_api.cc
17
TabsWindowsAPI
::
TabsWindowsAPI
(Profile* profile) : profile_(profile) {
53
TabsWindowsAPI
::~
TabsWindowsAPI
() {
57
TabsWindowsAPI
*
TabsWindowsAPI
::Get(Profile* profile) {
58
return ProfileKeyedAPIFactory<
TabsWindowsAPI
>::GetForProfile(profile);
61
TabsEventRouter*
TabsWindowsAPI
::tabs_event_router() {
67
WindowsEventRouter*
TabsWindowsAPI
::windows_event_router() {
73
void
TabsWindowsAPI
::Shutdown()
[
all
...]
tabs_windows_api.h
17
class
TabsWindowsAPI
: public ProfileKeyedAPI, public EventRouter::Observer {
19
explicit
TabsWindowsAPI
(Profile* profile);
20
virtual ~
TabsWindowsAPI
();
22
// Convenience method to get the
TabsWindowsAPI
for a profile.
23
static
TabsWindowsAPI
* Get(Profile* profile);
32
static ProfileKeyedAPIFactory<
TabsWindowsAPI
>* GetFactoryInstance();
39
friend class ProfileKeyedAPIFactory<
TabsWindowsAPI
>;
45
return "
TabsWindowsAPI
";
Completed in 34 milliseconds