HomeSort by relevance Sort by last modified time
    Searched refs:provider_id (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/content/child/service_worker/
service_worker_provider_context.h 38 explicit ServiceWorkerProviderContext(int provider_id);
43 void OnSetWaitingServiceWorker(int provider_id,
45 void OnSetCurrentServiceWorker(int provider_id,
48 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerProviderContext
service_worker_provider_context.cc 19 ServiceWorkerProviderContext::ServiceWorkerProviderContext(int provider_id)
20 : provider_id_(provider_id),
70 int provider_id,
72 DCHECK_EQ(provider_id_, provider_id);
77 int provider_id,
79 DCHECK_EQ(provider_id_, provider_id);
service_worker_dispatcher.cc 77 int provider_id,
95 CurrentWorkerId(), request_id, provider_id, pattern, script_url));
99 int provider_id,
115 CurrentWorkerId(), request_id, provider_id, pattern));
121 int provider_id = provider_context->provider_id(); local
122 DCHECK(!ContainsKey(provider_contexts_, provider_id));
123 provider_contexts_[provider_id] = provider_context;
129 DCHECK(ContainsKey(provider_contexts_, provider_context->provider_id()));
130 provider_contexts_.erase(provider_context->provider_id());
    [all...]
service_worker_dispatcher.h 50 int provider_id,
56 int provider_id,
68 // for a document whose provider can be identified by |provider_id|.
69 void AddScriptClient(int provider_id,
71 void RemoveScriptClient(int provider_id);
124 int provider_id,
127 int provider_id,
130 int provider_id,
service_worker_network_provider.h 18 // A unique provider_id is generated for each instance.
42 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerNetworkProvider
service_worker_message_filter.h 40 int provider_id,
service_worker_message_filter.cc 80 int provider_id,
web_service_worker_provider_impl.cc 28 provider_id_(context->provider_id()) {
  /external/chromium_org/content/browser/service_worker/
service_worker_dispatcher_host.h 64 int provider_id,
69 int provider_id,
71 void OnProviderCreated(int provider_id);
72 void OnProviderDestroyed(int provider_id);
73 void OnSetHostedVersionId(int provider_id, int64 version_id);
service_worker_dispatcher_host.cc 168 int provider_id,
181 render_process_id_, provider_id);
218 int provider_id,
230 render_process_id_, provider_id);
284 void ServiceWorkerDispatcherHost::OnProviderCreated(int provider_id) {
287 if (GetContext()->GetProviderHost(render_process_id_, provider_id)) {
293 render_process_id_, provider_id, GetContext()->AsWeakPtr(), this));
297 void ServiceWorkerDispatcherHost::OnProviderDestroyed(int provider_id) {
300 if (!GetContext()->GetProviderHost(render_process_id_, provider_id)) {
304 GetContext()->RemoveProviderHost(render_process_id_, provider_id);
    [all...]
service_worker_request_handler.cc 59 int provider_id,
67 provider_id == kInvalidServiceWorkerProviderId) {
72 context_wrapper->context()->GetProviderHost(process_id, provider_id);
service_worker_provider_host.h 44 int provider_id,
50 int provider_id() const { return provider_id_; } function in class:content::ServiceWorkerProviderHost
service_worker_provider_host.cc 23 int process_id, int provider_id,
27 provider_id_(provider_id),
59 kDocumentMainThreadId, provider_id(), CreateHandleAndPass(version)));
78 kDocumentMainThreadId, provider_id(), CreateHandleAndPass(version)));
156 kDocumentMainThreadId, provider_id(),
service_worker_dispatcher_host_unittest.cc 75 void Register(int64 provider_id,
81 -1, -1, provider_id, pattern, worker_url));
88 void Unregister(int64 provider_id, GURL pattern, uint32 expected_message) {
91 -1, -1, provider_id, pattern));
service_worker_request_handler.h 48 int provider_id,
service_worker_context_core.cc 109 int process_id, int provider_id) {
113 return map->Lookup(provider_id);
124 map->AddWithID(host_ptr, host_ptr->provider_id());
128 int process_id, int provider_id) {
131 map->Remove(provider_id);
service_worker_context_core.h 124 ServiceWorkerProviderHost* GetProviderHost(int process_id, int provider_id);
126 void RemoveProviderHost(int process_id, int provider_id);
  /external/chromium_org/third_party/webrtc/video_engine/
vie_input_manager.h 93 ViEFrameProviderBase* ViEFrameProvider(int provider_id) const;
119 ViEFrameProviderBase* FrameProvider(int provider_id) const;
vie_input_manager.cc 349 ViEFrameProviderBase* ViEInputManager::ViEFrameProvider(int provider_id) const {
353 vie_frame_provider_map_.find(provider_id);
386 int provider_id) const {
388 provider_id);
  /external/chromium_org/chrome/browser/content_settings/
cookie_settings.h 37 // |provider_id| is not NULL, the id of the provider which provided the
41 ContentSetting GetDefaultCookieSetting(std::string* provider_id) const;
host_content_settings_map.h 65 // Returns the default setting for a particular content type. If |provider_id|
71 std::string* provider_id) const;
cookie_settings.cc 112 CookieSettings::GetDefaultCookieSetting(std::string* provider_id) const {
114 CONTENT_SETTINGS_TYPE_COOKIES, provider_id);
host_content_settings_map.cc 184 std::string* provider_id) const {
197 if (provider_id)
198 *provider_id = kProviderNames[provider->first];
  /external/chromium_org/chrome/browser/notifications/
desktop_notification_service.h 103 // been allowed or denied yet. If |provider_id| is not NULL, the id of the
105 ContentSetting GetDefaultContentSetting(std::string* provider_id);
  /external/chromium_org/chrome/browser/ui/webui/options/
content_settings_handler.h 190 // Gets the default setting in string form. If |provider_id| is not NULL, the
193 std::string* provider_id);

Completed in 1610 milliseconds

1 2