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

Side by Side Diff: third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerResponse.h

Issue 1373693002: Move ServiceWorker public headers to public/{web,platform}/modules/serviceworker (3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 2 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 2014 The Chromium Authors. All rights reserved. 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 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 WebServiceWorkerResponse_h 5 #ifndef WebServiceWorkerResponse_h
6 #define WebServiceWorkerResponse_h 6 #define WebServiceWorkerResponse_h
7 7
8 #include "public/platform/WebCommon.h" 8 #include "public/platform/WebCommon.h"
9 #include "public/platform/WebPrivatePtr.h" 9 #include "public/platform/WebPrivatePtr.h"
10 #include "public/platform/WebServiceWorkerResponseError.h"
11 #include "public/platform/WebServiceWorkerResponseType.h"
12 #include "public/platform/WebString.h" 10 #include "public/platform/WebString.h"
13 #include "public/platform/WebURL.h" 11 #include "public/platform/WebURL.h"
14 #include "public/platform/WebVector.h" 12 #include "public/platform/WebVector.h"
13 #include "public/platform/modules/serviceworker/WebServiceWorkerResponseError.h"
14 #include "public/platform/modules/serviceworker/WebServiceWorkerResponseType.h"
15 15
16 #if INSIDE_BLINK 16 #if INSIDE_BLINK
17 #include "wtf/Forward.h" 17 #include "wtf/Forward.h"
18 #include "wtf/HashMap.h" 18 #include "wtf/HashMap.h"
19 #include "wtf/text/StringHash.h" 19 #include "wtf/text/StringHash.h"
20 #endif 20 #endif
21 21
22 namespace blink { 22 namespace blink {
23 23
24 class BlobDataHandle; 24 class BlobDataHandle;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 PassRefPtr<BlobDataHandle> blobDataHandle() const; 83 PassRefPtr<BlobDataHandle> blobDataHandle() const;
84 #endif 84 #endif
85 85
86 private: 86 private:
87 WebPrivatePtr<WebServiceWorkerResponsePrivate> m_private; 87 WebPrivatePtr<WebServiceWorkerResponsePrivate> m_private;
88 }; 88 };
89 89
90 } // namespace blink 90 } // namespace blink
91 91
92 #endif // WebServiceWorkerResponse_h 92 #endif // WebServiceWorkerResponse_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698