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

Side by Side Diff: public/platform/WebServiceWorkerResponseType.h

Issue 1262603004: Move ServiceWorker public headers to public/{web,platform}/modules/serviceworker (3/3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « public/platform/WebServiceWorkerResponseError.h ('k') | public/platform/WebServiceWorkerSkipWaitingCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698