Chromium Code Reviews| Index: net/log/net_log_event_type_list.h |
| diff --git a/net/log/net_log_event_type_list.h b/net/log/net_log_event_type_list.h |
| index da579dfdc6bba0233a82272c59e8c7ae60b0da32..85bfac2d021f93dc480564fe5d8a4a197994e0d6 100644 |
| --- a/net/log/net_log_event_type_list.h |
| +++ b/net/log/net_log_event_type_list.h |
| @@ -1796,6 +1796,75 @@ EVENT_TYPE(APPCACHE_DELIVERING_ERROR_RESPONSE) |
| EVENT_TYPE(APPCACHE_DELIVERING_EXECUTABLE_RESPONSE) |
| // ------------------------------------------------------------------------ |
| +// Service Worker |
| +// ------------------------------------------------------------------------ |
| +// This event is emitted when Service Worker starts to handle a request. |
| +EVENT_TYPE(SERVICE_WORKER_START_REQUEST) |
| + |
| +// This event is emitted when Service Worker results in a fallback to network |
| +// response. |
| +EVENT_TYPE(SERVICE_WORKER_FALLBACK_RESPONSE) |
| + |
| +// This event is emitted when Service Worker results in a fallback to network |
| +// response, and asks the renderer rather than the browser to do the fallback |
| +// due to CORS. |
| +EVENT_TYPE(SERVICE_WORKER_FALLBACK_FOR_CORS) |
| + |
| +// This event is emitted when Service Worker responds with a headers-only |
| +// response. |
| +EVENT_TYPE(SERVICE_WORKER_HEADERS_ONLY_RESPONSE) |
| + |
| +// This event is emitted when Service Worker responds with a stream. |
| +EVENT_TYPE(SERVICE_WORKER_STREAM_RESPONSE) |
| + |
| +// This event is emitted when Service Worker responds with a blob. |
| +EVENT_TYPE(SERVICE_WORKER_BLOB_RESPONSE) |
| + |
| +// This event is emitted when Service Worker instructs the browser |
| +// to responds with a network error. |
|
mmenke
2015/07/09 14:57:44
nit: responds->respond
falken
2015/07/10 01:10:18
Done. Fixed a few other grammar issues also.
|
| +EVENT_TYPE(SERVICE_WORKER_ERROR_RESPONSE_STATUS_ZERO) |
| + |
| +// This event is emitted when Service Worker attempts to respond with |
| +// a blob, but it was not readable. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_BAD_BLOB) |
| + |
| +// This event is emitted when Service Worker failed to respond because |
| +// the provider host was null. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_NO_PROVIDER_HOST) |
| + |
| +// This event is emitted when Service Worker fails to respond because |
| +// the registration had no active version. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_NO_ACTIVE_VERSION) |
| + |
| +// This event is emitted when Service Worker fails to respond because |
| +// the underlying request was detached. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_NO_REQUEST) |
| + |
| +// This event is emitted when Service Worker fails to respond because |
| +// the fetch event could not be dispatched to be worker. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_FETCH_EVENT_DISPATCH) |
| + |
| +// This event is emitted when Service Worker fails to respond because |
| +// of an error when reading the blob response. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_BLOB_READ) |
| + |
| +// This event is emitted when Service Worker fails to respond because |
| +// of an error when reading the stream response. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_STREAM_ABORTED) |
| + |
| +// This event is emitted when Service Worker is destroyed before it |
| +// responds. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_KILLED) |
| + |
| +// This event is emitted when Service Worker is destroyed before it |
| +// finishes responding with a blob. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_KILLED_WITH_BLOB) |
| + |
| +// This event is emitted when Service Worker is destroyed before it |
| +// finishes responding with a stream. |
| +EVENT_TYPE(SERVICE_WORKER_ERROR_KILLED_WITH_STREAM) |
| + |
| +// ------------------------------------------------------------------------ |
| // Global events |
| // ------------------------------------------------------------------------ |
| // These are events which are not grouped by source id, as they have no |