| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 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 WebServiceWorkerResponseType_h | |
| 6 #define WebServiceWorkerResponseType_h | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 // FIXME: This header is temporarily kept around not to break builds, but | |
| 11 // should be removed once chromium-side change is landed. | |
| 12 // If you make changes in this file please make sure you have the same changes | |
| 13 // in public/platform/modules/serviceworker/WebServiceWorkerResponseType.h | |
| 14 // until then. | |
| 15 enum WebServiceWorkerResponseType { | |
| 16 WebServiceWorkerResponseTypeBasic, | |
| 17 WebServiceWorkerResponseTypeCORS, | |
| 18 WebServiceWorkerResponseTypeDefault, | |
| 19 WebServiceWorkerResponseTypeError, | |
| 20 WebServiceWorkerResponseTypeOpaque, | |
| 21 WebServiceWorkerResponseTypeOpaqueRedirect, | |
| 22 WebServiceWorkerResponseTypeLast = WebServiceWorkerResponseTypeOpaqueRedirec
t | |
| 23 }; | |
| 24 | |
| 25 } // namespace blink | |
| 26 | |
| 27 #endif // WebServiceWorkerResponseType_h | |
| OLD | NEW |