| 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_NAVIGATION_URL_LOADER_NETWORK_SERVICE_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_NETWORK_SERVICE_H_ |
| 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_NETWORK_SERVICE_H_ | 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_NETWORK_SERVICE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "content/browser/loader/navigation_url_loader.h" | 10 #include "content/browser/loader/navigation_url_loader.h" |
| 11 #include "content/common/url_loader.mojom.h" | |
| 12 #include "content/public/browser/ssl_status.h" | 11 #include "content/public/browser/ssl_status.h" |
| 12 #include "content/public/common/url_loader.mojom.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 struct RedirectInfo; | 15 struct RedirectInfo; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 class ResourceContext; | 20 class ResourceContext; |
| 21 class NavigationPostDataHandler; | 21 class NavigationPostDataHandler; |
| 22 | 22 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 std::unique_ptr<URLLoaderRequestController> request_controller_; | 59 std::unique_ptr<URLLoaderRequestController> request_controller_; |
| 60 | 60 |
| 61 base::WeakPtrFactory<NavigationURLLoaderNetworkService> weak_factory_; | 61 base::WeakPtrFactory<NavigationURLLoaderNetworkService> weak_factory_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderNetworkService); | 63 DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderNetworkService); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace content | 66 } // namespace content |
| 67 | 67 |
| 68 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_NETWORK_SERVICE_H_ | 68 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_NETWORK_SERVICE_H_ |
| OLD | NEW |