Home
last modified time | relevance | path

Searched refs:ServiceWorkerContextCore (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/content/browser/service_worker/
Dservice_worker_context_core.cc21 ServiceWorkerContextCore::ServiceWorkerContextCore( in ServiceWorkerContextCore() function in content::ServiceWorkerContextCore
27 ServiceWorkerContextCore::~ServiceWorkerContextCore() {} in ~ServiceWorkerContextCore()
29 ServiceWorkerProviderHost* ServiceWorkerContextCore::GetProviderHost( in GetProviderHost()
37 void ServiceWorkerContextCore::AddProviderHost( in AddProviderHost()
48 void ServiceWorkerContextCore::RemoveProviderHost( in RemoveProviderHost()
55 void ServiceWorkerContextCore::RemoveAllProviderHostsForProcess( in RemoveAllProviderHostsForProcess()
61 bool ServiceWorkerContextCore::IsEnabled() { in IsEnabled()
66 void ServiceWorkerContextCore::RegisterServiceWorker( in RegisterServiceWorker()
74 base::Bind(&ServiceWorkerContextCore::RegistrationComplete, in RegisterServiceWorker()
79 void ServiceWorkerContextCore::UnregisterServiceWorker( in UnregisterServiceWorker()
[all …]
Dservice_worker_context_core.h42 class CONTENT_EXPORT ServiceWorkerContextCore
44 public base::SupportsWeakPtr<ServiceWorkerContextCore>) { in NON_EXPORTED_BASE() argument
54 ServiceWorkerContextCore(const base::FilePath& user_data_directory, in NON_EXPORTED_BASE()
56 ~ServiceWorkerContextCore(); in NON_EXPORTED_BASE()
99 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextCore); in NON_EXPORTED_BASE()
Dservice_worker_context_wrapper.h24 class ServiceWorkerContextCore; variable
43 ServiceWorkerContextCore* context(); in NON_EXPORTED_BASE()
49 scoped_ptr<ServiceWorkerContextCore> context_core_; in NON_EXPORTED_BASE()
Dembedded_worker_registry.h26 class ServiceWorkerContextCore; variable
37 base::WeakPtr<ServiceWorkerContextCore> context); in NON_EXPORTED_BASE()
65 base::WeakPtr<ServiceWorkerContextCore> context_; in NON_EXPORTED_BASE()
Dservice_worker_context_unittest.cc29 ServiceWorkerContextCore::RegistrationCallback MakeRegisteredCallback( in MakeRegisteredCallback()
39 ServiceWorkerContextCore::UnregistrationCallback MakeUnregisteredCallback( in MakeUnregisteredCallback()
52 context_.reset(new ServiceWorkerContextCore(base::FilePath(), NULL)); in SetUp()
59 scoped_ptr<ServiceWorkerContextCore> context_;
Dservice_worker_context_wrapper.cc33 new ServiceWorkerContextCore( in Init()
47 ServiceWorkerContextCore* ServiceWorkerContextWrapper::context() { in context()
Dservice_worker_dispatcher_host.h16 class ServiceWorkerContextCore; variable
64 base::WeakPtr<ServiceWorkerContextCore> context_;
Dembedded_worker_instance_unittest.cc50 context_.reset(new ServiceWorkerContextCore(base::FilePath(), NULL)); in SetUp()
63 scoped_ptr<ServiceWorkerContextCore> context_;
Dembedded_worker_registry.cc17 base::WeakPtr<ServiceWorkerContextCore> context) in EmbeddedWorkerRegistry()
Dservice_worker_dispatcher_host_unittest.cc37 ServiceWorkerContextCore* context() { return context_wrapper_->context(); } in context()