Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 CONTENT_BROWSER_LOADER_URL_LOADER_REQUEST_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_URL_LOADER_REQUEST_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_LOADER_URL_LOADER_REQUEST_HANDLER_H_ | 6 #define CONTENT_BROWSER_LOADER_URL_LOADER_REQUEST_HANDLER_H_ |
| 7 | 7 |
| 8 #include <memory> | |
| 8 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" | 10 #include "base/macros.h" |
| 10 #include "content/common/url_loader_factory.mojom.h" | 11 #include "content/common/url_loader.mojom.h" |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 | 14 |
| 14 class ResourceContext; | 15 class ResourceContext; |
| 15 struct ResourceRequest; | 16 struct ResourceRequest; |
| 16 | 17 |
| 17 using LoaderFactoryCallback = | 18 using StartLoaderCallback = |
| 18 base::OnceCallback<void(mojom::URLLoaderFactory*)>; | 19 base::OnceCallback<void(mojom::URLLoaderAssociatedRequest request, |
|
jam
2017/06/06 17:45:31
actually, can this now be URLLoaderRequest instead
kinuko
2017/06/07 03:41:25
Hmm, down the chain we still pass this request to
| |
| 20 mojom::URLLoaderClientPtr client)>; | |
| 21 | |
| 22 using LoaderCallback = base::OnceCallback<void(StartLoaderCallback)>; | |
| 19 | 23 |
| 20 // An instance of this class is a per-request object and kept around during | 24 // An instance of this class is a per-request object and kept around during |
| 21 // the lifetime of a request (including multiple redirect legs) on IO thread. | 25 // the lifetime of a request (including multiple redirect legs) on IO thread. |
| 22 class CONTENT_EXPORT URLLoaderRequestHandler { | 26 class CONTENT_EXPORT URLLoaderRequestHandler { |
| 23 public: | 27 public: |
| 24 URLLoaderRequestHandler() = default; | 28 URLLoaderRequestHandler() = default; |
| 25 virtual ~URLLoaderRequestHandler() = default; | 29 virtual ~URLLoaderRequestHandler() = default; |
| 26 | 30 |
| 27 // Calls |callback| with non-null factory if this handler can handle | 31 // Calls non-null |callback| if this handler can handle the request, calls |
|
yhirano
2017/06/07 01:35:10
"Calls |callback| with a non-null StartLoaderCallb
kinuko
2017/06/07 03:41:25
Done. (Will be updated in the patch to be uploaded
| |
| 28 // the request, calls it with nullptr otherwise. | 32 // it with null callback otherwise. |
| 29 // Some implementation notes: | 33 virtual void MaybeCreateLoader(const ResourceRequest& resource_request, |
| 30 // 1) The returned pointer needs to be valid only until a single | 34 ResourceContext* resource_context, |
| 31 // CreateLoaderAndStart call is made, and it is okay to do CHECK(false) for | 35 LoaderCallback callback) = 0; |
| 32 // any subsequent calls. | |
| 33 // 2) The implementor is not supposed to set up and return URLLoaderFactory | |
| 34 // until it finds out that the handler is really going to handle the | |
| 35 // request. (For example ServiceWorker's request handler would not need to | |
| 36 // call the callback until it gets response from SW, and it may still | |
| 37 // call the callback with nullptr if it turns out that it needs to fallback | |
| 38 // to the network.) | |
| 39 virtual void MaybeCreateLoaderFactory(const ResourceRequest& resource_request, | |
| 40 ResourceContext* resource_context, | |
| 41 LoaderFactoryCallback callback) = 0; | |
| 42 }; | 36 }; |
| 43 | 37 |
| 44 } // namespace content | 38 } // namespace content |
| 45 | 39 |
| 46 #endif // CONTENT_BROWSER_LOADER_URL_LOADER_REQUEST_HANDLER_H_ | 40 #endif // CONTENT_BROWSER_LOADER_URL_LOADER_REQUEST_HANDLER_H_ |
| OLD | NEW |