Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: content/browser/service_worker/service_worker_dispatcher_host.h

Issue 1149383004: [3/5 chromium] Shows the clients which are controlled by ServiceWorker in DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated nhiroki's comment Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/id_map.h" 10 #include "base/id_map.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 const GURL& pattern); 94 const GURL& pattern);
95 void OnGetRegistration(int thread_id, 95 void OnGetRegistration(int thread_id,
96 int request_id, 96 int request_id,
97 int provider_id, 97 int provider_id,
98 const GURL& document_url); 98 const GURL& document_url);
99 void OnGetRegistrations(int thread_id, int request_id, int provider_id); 99 void OnGetRegistrations(int thread_id, int request_id, int provider_id);
100 void OnGetRegistrationForReady(int thread_id, 100 void OnGetRegistrationForReady(int thread_id,
101 int request_id, 101 int request_id,
102 int provider_id); 102 int provider_id);
103 void OnProviderCreated(int provider_id, 103 void OnProviderCreated(int provider_id,
104 int render_frame_id, 104 int route_id,
105 ServiceWorkerProviderType provider_type); 105 ServiceWorkerProviderType provider_type);
106 void OnProviderDestroyed(int provider_id); 106 void OnProviderDestroyed(int provider_id);
107 void OnSetHostedVersionId(int provider_id, int64 version_id); 107 void OnSetHostedVersionId(int provider_id, int64 version_id);
108 void OnWorkerReadyForInspection(int embedded_worker_id); 108 void OnWorkerReadyForInspection(int embedded_worker_id);
109 void OnWorkerScriptLoaded(int embedded_worker_id, 109 void OnWorkerScriptLoaded(int embedded_worker_id,
110 int thread_id, 110 int thread_id,
111 int provider_id); 111 int provider_id);
112 void OnWorkerScriptLoadFailed(int embedded_worker_id); 112 void OnWorkerScriptLoadFailed(int embedded_worker_id);
113 void OnWorkerScriptEvaluated(int embedded_worker_id, bool success); 113 void OnWorkerScriptEvaluated(int embedded_worker_id, bool success);
114 void OnWorkerStarted(int embedded_worker_id); 114 void OnWorkerStarted(int embedded_worker_id);
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 bool channel_ready_; // True after BrowserMessageFilter::sender_ != NULL. 205 bool channel_ready_; // True after BrowserMessageFilter::sender_ != NULL.
206 ScopedVector<IPC::Message> pending_messages_; 206 ScopedVector<IPC::Message> pending_messages_;
207 207
208 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerDispatcherHost); 208 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerDispatcherHost);
209 }; 209 };
210 210
211 } // namespace content 211 } // namespace content
212 212
213 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ 213 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698