Searched defs:provider_id (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/content/child/service_worker/
H A Dservice_worker_network_provider.h18 // A unique provider_id is generated for each instance.
42 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerNetworkProvider
H A Dweb_service_worker_provider_impl.h48 int provider_id() const { return provider_id_; } function in class:content::WebServiceWorkerProviderImpl
H A Dservice_worker_provider_context.h39 explicit ServiceWorkerProviderContext(int provider_id);
56 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerProviderContext
H A Dservice_worker_message_filter.cc97 int provider_id,
113 int provider_id,
95 OnStaleSetVersionAttributes( int thread_id, int provider_id, int registration_handle_id, int changed_mask, const ServiceWorkerVersionAttributes& attrs) argument
111 OnStaleSetControllerServiceWorker( int thread_id, int provider_id, const ServiceWorkerObjectInfo& info) argument
H A Dservice_worker_provider_context.cc20 ServiceWorkerProviderContext::ServiceWorkerProviderContext(int provider_id) argument
21 : provider_id_(provider_id),
H A Dservice_worker_dispatcher.cc92 int provider_id,
115 CurrentWorkerId(), request_id, provider_id, pattern, script_url));
119 int provider_id,
139 CurrentWorkerId(), request_id, provider_id, pattern));
143 int provider_id,
163 CurrentWorkerId(), request_id, provider_id, document_url));
169 int provider_id = provider_context->provider_id(); local
170 DCHECK(!ContainsKey(provider_contexts_, provider_id));
171 provider_contexts_[provider_id]
91 RegisterServiceWorker( int provider_id, const GURL& pattern, const GURL& script_url, WebServiceWorkerRegistrationCallbacks* callbacks) argument
118 UnregisterServiceWorker( int provider_id, const GURL& pattern, WebServiceWorkerUnregistrationCallbacks* callbacks) argument
142 GetRegistration( int provider_id, const GURL& document_url, WebServiceWorkerRegistrationCallbacks* callbacks) argument
185 AddScriptClient( int provider_id, blink::WebServiceWorkerProviderClient* client) argument
193 RemoveScriptClient(int provider_id) argument
289 OnAssociateRegistration( int thread_id, int provider_id, const ServiceWorkerRegistrationObjectInfo& info, const ServiceWorkerVersionAttributes& attrs) argument
306 OnDisassociateRegistration( int thread_id, int provider_id) argument
479 OnSetVersionAttributes( int thread_id, int provider_id, int registration_handle_id, int changed_mask, const ServiceWorkerVersionAttributes& attributes) argument
517 SetInstallingServiceWorker( int provider_id, int registration_handle_id, const ServiceWorkerObjectInfo& info) argument
547 SetWaitingServiceWorker( int provider_id, int registration_handle_id, const ServiceWorkerObjectInfo& info) argument
576 SetActiveServiceWorker( int provider_id, int registration_handle_id, const ServiceWorkerObjectInfo& info) argument
605 SetReadyRegistration( int provider_id, int registration_handle_id) argument
636 OnSetControllerServiceWorker( int thread_id, int provider_id, const ServiceWorkerObjectInfo& info) argument
658 OnPostMessage( int thread_id, int provider_id, const base::string16& message, const std::vector<int>& sent_message_port_ids, const std::vector<int>& new_routing_ids) argument
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_handle.h43 int provider_id,
49 int provider_id,
73 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerHandle
H A Dservice_worker_registration_handle.h32 int provider_id,
44 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerRegistrationHandle
H A Dservice_worker_handle.cc46 int provider_id,
53 context, sender, thread_id, provider_id, registration, version));
60 int provider_id,
66 provider_id_(provider_id),
42 Create( base::WeakPtr<ServiceWorkerContextCore> context, IPC::Sender* sender, int thread_id, int provider_id, ServiceWorkerVersion* version) argument
56 ServiceWorkerHandle( base::WeakPtr<ServiceWorkerContextCore> context, IPC::Sender* sender, int thread_id, int provider_id, ServiceWorkerRegistration* registration, ServiceWorkerVersion* version) argument
H A Dservice_worker_provider_host.h47 int provider_id,
53 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerProviderHost
H A Dservice_worker_registration_handle.cc19 int provider_id,
23 provider_id_(provider_id),
16 ServiceWorkerRegistrationHandle( base::WeakPtr<ServiceWorkerContextCore> context, ServiceWorkerDispatcherHost* dispatcher_host, int provider_id, ServiceWorkerRegistration* registration) argument
H A Dservice_worker_request_handler.cc61 int provider_id,
71 provider_id == kInvalidServiceWorkerProviderId) {
76 context_wrapper->context()->GetProviderHost(process_id, provider_id);
56 InitializeHandler( net::URLRequest* request, ServiceWorkerContextWrapper* context_wrapper, storage::BlobStorageContext* blob_storage_context, int process_id, int provider_id, bool skip_service_worker, ResourceType resource_type, scoped_refptr<ResourceRequestBody> body) argument
H A Dservice_worker_dispatcher_host_unittest.cc75 void SendRegister(int64 provider_id, GURL pattern, GURL worker_url) { argument
78 -1, -1, provider_id, pattern, worker_url));
82 void Register(int64 provider_id, argument
86 SendRegister(provider_id, pattern, worker_url);
92 void SendUnregister(int64 provider_id, GURL pattern) { argument
95 -1, -1, provider_id, pattern));
99 void Unregister(int64 provider_id, GURL pattern, uint32 expected_message) { argument
100 SendUnregister(provider_id, pattern);
106 void SendGetRegistration(int64 provider_id, GURL document_url) { argument
109 -1, -1, provider_id, document_ur
113 GetRegistration(int64 provider_id, GURL document_url, uint32 expected_message) argument
[all...]
H A Dservice_worker_provider_host.cc25 int process_id, int provider_id,
29 provider_id_(provider_id),
78 kDocumentMainThreadId, provider_id(), CreateHandleAndPass(version)));
113 provider_id(), registration);
124 kDocumentMainThreadId, provider_id(), handle->GetObjectInfo(), attrs));
142 kDocumentMainThreadId, provider_id()));
189 kDocumentMainThreadId, provider_id(),
24 ServiceWorkerProviderHost( int process_id, int provider_id, base::WeakPtr<ServiceWorkerContextCore> context, ServiceWorkerDispatcherHost* dispatcher_host) argument
H A Dservice_worker_context_core.cc139 int process_id, int provider_id) {
143 return map->Lookup(provider_id);
154 map->AddWithID(host_ptr, host_ptr->provider_id());
158 int process_id, int provider_id) {
161 map->Remove(provider_id);
138 GetProviderHost( int process_id, int provider_id) argument
157 RemoveProviderHost( int process_id, int provider_id) argument
H A Dservice_worker_dispatcher_host.cc183 int provider_id,
186 FindRegistrationHandle(provider_id, registration->id());
194 GetContext()->AsWeakPtr(), this, provider_id, registration));
215 int provider_id,
230 render_process_id_, provider_id);
261 provider_id,
268 int provider_id,
282 render_process_id_, provider_id);
317 int provider_id,
331 render_process_id_, provider_id);
182 GetOrCreateRegistrationHandle( int provider_id, ServiceWorkerRegistration* registration) argument
212 OnRegisterServiceWorker( int thread_id, int request_id, int provider_id, const GURL& pattern, const GURL& script_url) argument
265 OnUnregisterServiceWorker( int thread_id, int request_id, int provider_id, const GURL& pattern) argument
314 OnGetRegistration( int thread_id, int request_id, int provider_id, const GURL& document_url) argument
396 OnProviderCreated(int provider_id) argument
411 OnProviderDestroyed(int provider_id) argument
423 OnSetHostedVersionId( int provider_id, int64 version_id) argument
442 FindRegistrationHandle(int provider_id, int64 registration_id) argument
458 GetRegistrationObjectInfoAndVersionAttributes( int provider_id, ServiceWorkerRegistration* registration, ServiceWorkerRegistrationObjectInfo* info, ServiceWorkerVersionAttributes* attrs) argument
475 RegistrationComplete( int thread_id, int provider_id, int request_id, ServiceWorkerStatusCode status, int64 registration_id, int64 version_id) argument
689 GetRegistrationComplete( int thread_id, int provider_id, int request_id, ServiceWorkerStatusCode status, const scoped_refptr<ServiceWorkerRegistration>& registration) argument
[all...]
/external/chromium_org/components/omnibox/
H A Dautocomplete_result_unittest.cc74 int provider_id; member in struct:AutocompleteResultTest::TestData
134 match->provider = reinterpret_cast<AutocompleteProvider*>(data.provider_id);
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dwebsite_settings_handler.cc466 std::string provider_id; local
468 "value", GetSettingDefaultFromModel(last_setting, &provider_id));
469 filter_settings.SetString("managedBy", provider_id);
702 std::string* provider_id) {
706 type, provider_id);
700 GetSettingDefaultFromModel( ContentSettingsType type, std::string* provider_id) argument
H A Dcontent_settings_handler.cc590 std::string provider_id; local
592 GetSettingDefaultFromModel(type, &provider_id));
594 ContentSettingsTypeToGroupName(type) + ".managedBy", provider_id);
667 ContentSettingsType type, std::string* provider_id) {
672 type, provider_id);
666 GetSettingDefaultFromModel( ContentSettingsType type, std::string* provider_id) argument
/external/chromium_org/content/renderer/
H A Drender_frame_impl.cc2722 int provider_id = kInvalidServiceWorkerProviderId; local
2731 provider_id = provider->provider_id();
2737 provider_id = provider->provider_id();
2767 extra_data->set_service_worker_provider_id(provider_id);

Completed in 217 milliseconds