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

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

Issue 2897063002: Network service: Implement URLLoader chaining for interceptors (Closed)
Patch Set: documentation Created 3 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_RESPONSE_TYPE_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_RESPONSE_TYPE_H_
7
8 namespace content {
9
10 // Response handling type, used in URL {request,loader} jobs.
11 enum ServiceWorkerResponseType {
12 NOT_DETERMINED,
13 FAIL_DUE_TO_LOST_CONTROLLER,
14 FALLBACK_TO_NETWORK,
15 FALLBACK_TO_RENDERER, // Use this when falling back with CORS check
16 FORWARD_TO_SERVICE_WORKER
17 };
18
19 } // namespace content
20
21 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_RESPONSE_TYPE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698