OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FactoryFunction
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/
GeolocationService.h
69
typedef GeolocationService* (
FactoryFunction
)(GeolocationServiceClient*);
70
static void setCustomMockFactory(
FactoryFunction
);
79
static
FactoryFunction
* s_factoryFunction;
80
static
FactoryFunction
* s_mockFactoryFunction;
GeolocationService.cpp
44
GeolocationService::
FactoryFunction
* GeolocationService::s_factoryFunction = &createGeolocationServiceNull;
45
GeolocationService::
FactoryFunction
* GeolocationService::s_mockFactoryFunction = &createGeolocationServiceNull;
47
GeolocationService::
FactoryFunction
* GeolocationService::s_mockFactoryFunction = &GeolocationServiceMock::create;
61
void GeolocationService::setCustomMockFactory(
FactoryFunction
f)
/external/chromium/webkit/glue/media/
web_data_source_factory.h
21
typedef WebDataSource* (*
FactoryFunction
)(MessageLoop* render_loop,
25
FactoryFunction
factory_function,
43
FactoryFunction
factory_function_;
web_data_source_factory.cc
35
FactoryFunction
factory_function,
/external/chromium/chrome/browser/profiles/
profile_keyed_service_factory.h
24
typedef ProfileKeyedService* (*
FactoryFunction
)(Profile* profile);
39
void set_test_factory(
FactoryFunction
factory) { factory_ = factory; }
105
FactoryFunction
factory_;
/external/webkit/Source/WebCore/platform/efl/
GeolocationServiceEfl.cpp
31
GeolocationService::
FactoryFunction
* GeolocationService::s_factoryFunction = &GeolocationServiceEfl::create;
/external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.cpp
60
GeolocationService::
FactoryFunction
* GeolocationService::s_factoryFunction = &GeolocationServiceAndroid::create;
/external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp
46
GeolocationService::
FactoryFunction
* GeolocationService::s_factoryFunction = &GeolocationServiceGtk::create;
Completed in 616 milliseconds