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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/ForeignFetchRespondWithObserver.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "modules/serviceworkers/ForeignFetchRespondWithObserver.h" 5 #include "modules/serviceworkers/ForeignFetchRespondWithObserver.h"
6 6
7 #include "core/fetch/CrossOriginAccessControl.h"
8 #include "modules/fetch/Response.h" 7 #include "modules/fetch/Response.h"
9 #include "modules/serviceworkers/ForeignFetchResponse.h" 8 #include "modules/serviceworkers/ForeignFetchResponse.h"
9 #include "platform/loader/fetch/CrossOriginAccessControl.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 ForeignFetchRespondWithObserver* ForeignFetchRespondWithObserver::create( 13 ForeignFetchRespondWithObserver* ForeignFetchRespondWithObserver::create(
14 ExecutionContext* context, 14 ExecutionContext* context,
15 int eventID, 15 int eventID,
16 const KURL& requestURL, 16 const KURL& requestURL,
17 WebURLRequest::FetchRequestMode requestMode, 17 WebURLRequest::FetchRequestMode requestMode,
18 WebURLRequest::FetchRedirectMode redirectMode, 18 WebURLRequest::FetchRedirectMode redirectMode,
19 WebURLRequest::FrameType frameType, 19 WebURLRequest::FrameType frameType,
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 eventID, 105 eventID,
106 requestURL, 106 requestURL,
107 requestMode, 107 requestMode,
108 redirectMode, 108 redirectMode,
109 frameType, 109 frameType,
110 requestContext, 110 requestContext,
111 observer), 111 observer),
112 m_requestOrigin(requestOrigin) {} 112 m_requestOrigin(requestOrigin) {}
113 113
114 } // namespace blink 114 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698