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

Side by Side Diff: Source/modules/fetch/FetchRequestData.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: rebase Created 5 years, 4 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
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 FetchRequestData_h 5 #ifndef FetchRequestData_h
6 #define FetchRequestData_h 6 #define FetchRequestData_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "platform/weborigin/KURL.h" 9 #include "platform/weborigin/KURL.h"
10 #include "platform/weborigin/Referrer.h" 10 #include "platform/weborigin/Referrer.h"
11 #include "public/platform/WebServiceWorkerRequest.h"
12 #include "public/platform/WebURLRequest.h" 11 #include "public/platform/WebURLRequest.h"
12 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h"
13 #include "wtf/PassOwnPtr.h" 13 #include "wtf/PassOwnPtr.h"
14 #include "wtf/PassRefPtr.h" 14 #include "wtf/PassRefPtr.h"
15 #include "wtf/text/AtomicString.h" 15 #include "wtf/text/AtomicString.h"
16 #include "wtf/text/WTFString.h" 16 #include "wtf/text/WTFString.h"
17 17
18 namespace blink { 18 namespace blink {
19 19
20 class BodyStreamBuffer; 20 class BodyStreamBuffer;
21 class ExecutionContext; 21 class ExecutionContext;
22 class FetchHeaderList; 22 class FetchHeaderList;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // FIXME: Support m_useURLCredentialsFlag; 118 // FIXME: Support m_useURLCredentialsFlag;
119 // FIXME: Support m_redirectCount; 119 // FIXME: Support m_redirectCount;
120 Tainting m_responseTainting; 120 Tainting m_responseTainting;
121 Member<BodyStreamBuffer> m_buffer; 121 Member<BodyStreamBuffer> m_buffer;
122 String m_mimeType; 122 String m_mimeType;
123 }; 123 };
124 124
125 } // namespace blink 125 } // namespace blink
126 126
127 #endif // FetchRequestData_h 127 #endif // FetchRequestData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698