Chromium Code Reviews| 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_CHILD_WEB_URL_LOADER_IMPL_H_ | 5 #ifndef CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ |
| 6 #define CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ | 6 #define CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | |
|
darin (slow to review)
2014/08/19 20:50:08
nit: this include and perhaps the forward declarat
tyoshino (SeeGerritForStatus)
2014/08/20 07:09:52
Removed both. I'll add the GURL declaration in ano
| |
| 9 | |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 10 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 11 #include "third_party/WebKit/public/platform/WebURLLoader.h" | 13 #include "third_party/WebKit/public/platform/WebURLLoader.h" |
| 12 | 14 |
| 15 class GURL; | |
| 16 | |
| 13 namespace content { | 17 namespace content { |
| 14 | 18 |
| 15 class ResourceDispatcher; | 19 class ResourceDispatcher; |
| 16 struct ResourceResponseInfo; | 20 struct ResourceResponseInfo; |
| 17 | 21 |
| 18 class CONTENT_EXPORT WebURLLoaderImpl | 22 class CONTENT_EXPORT WebURLLoaderImpl |
| 19 : public NON_EXPORTED_BASE(blink::WebURLLoader) { | 23 : public NON_EXPORTED_BASE(blink::WebURLLoader) { |
| 20 public: | 24 public: |
| 21 explicit WebURLLoaderImpl(ResourceDispatcher* resource_dispatcher); | 25 explicit WebURLLoaderImpl(ResourceDispatcher* resource_dispatcher); |
| 22 virtual ~WebURLLoaderImpl(); | 26 virtual ~WebURLLoaderImpl(); |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 48 private: | 52 private: |
| 49 class Context; | 53 class Context; |
| 50 scoped_refptr<Context> context_; | 54 scoped_refptr<Context> context_; |
| 51 | 55 |
| 52 DISALLOW_COPY_AND_ASSIGN(WebURLLoaderImpl); | 56 DISALLOW_COPY_AND_ASSIGN(WebURLLoaderImpl); |
| 53 }; | 57 }; |
| 54 | 58 |
| 55 } // namespace content | 59 } // namespace content |
| 56 | 60 |
| 57 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ | 61 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ |
| OLD | NEW |