| OLD | NEW |
| 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 CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_CORE_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_CORE_H_ |
| 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_CORE_H_ | 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_CORE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "content/browser/loader/navigation_url_loader_impl.h" | 12 #include "content/browser/loader/navigation_url_loader_impl.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 NavigationResourceHandler; | 20 class NavigationResourceHandler; |
| 21 class NavigationData; | 21 class NavigationData; |
| 22 class ResourceContext; | 22 class ResourceContext; |
| 23 class ResourceHandler; | |
| 24 class ServiceWorkerNavigationHandleCore; | 23 class ServiceWorkerNavigationHandleCore; |
| 25 class StreamHandle; | 24 class StreamHandle; |
| 26 struct ResourceResponse; | 25 struct ResourceResponse; |
| 27 struct SSLStatus; | 26 struct SSLStatus; |
| 28 | 27 |
| 29 // The IO-thread counterpart to the NavigationURLLoaderImpl. It lives on the IO | 28 // The IO-thread counterpart to the NavigationURLLoaderImpl. It lives on the IO |
| 30 // thread and is owned by the UI-thread NavigationURLLoaderImpl. | 29 // thread and is owned by the UI-thread NavigationURLLoaderImpl. |
| 31 // NavigationURLLoaderImplCore interacts with the ResourceDispatcherHost stack | 30 // NavigationURLLoaderImplCore interacts with the ResourceDispatcherHost stack |
| 32 // and forwards signals back to the loader on the UI thread. | 31 // and forwards signals back to the loader on the UI thread. |
| 33 class NavigationURLLoaderImplCore { | 32 class NavigationURLLoaderImplCore { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 private: | 69 private: |
| 71 base::WeakPtr<NavigationURLLoaderImpl> loader_; | 70 base::WeakPtr<NavigationURLLoaderImpl> loader_; |
| 72 NavigationResourceHandler* resource_handler_; | 71 NavigationResourceHandler* resource_handler_; |
| 73 | 72 |
| 74 DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderImplCore); | 73 DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderImplCore); |
| 75 }; | 74 }; |
| 76 | 75 |
| 77 } // namespace content | 76 } // namespace content |
| 78 | 77 |
| 79 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_CORE_H_ | 78 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_IMPL_CORE_H_ |
| OLD | NEW |