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 "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "third_party/WebKit/public/platform/WebURLLoader.h" | 11 #include "third_party/WebKit/public/platform/WebURLLoader.h" |
12 | 12 |
| 13 class GURL; |
| 14 |
13 namespace content { | 15 namespace content { |
14 | 16 |
15 class ResourceDispatcher; | 17 class ResourceDispatcher; |
16 struct ResourceResponseInfo; | 18 struct ResourceResponseInfo; |
17 | 19 |
18 class CONTENT_EXPORT WebURLLoaderImpl | 20 class CONTENT_EXPORT WebURLLoaderImpl |
19 : public NON_EXPORTED_BASE(blink::WebURLLoader) { | 21 : public NON_EXPORTED_BASE(blink::WebURLLoader) { |
20 public: | 22 public: |
21 explicit WebURLLoaderImpl(ResourceDispatcher* resource_dispatcher); | 23 explicit WebURLLoaderImpl(ResourceDispatcher* resource_dispatcher); |
22 virtual ~WebURLLoaderImpl(); | 24 virtual ~WebURLLoaderImpl(); |
(...skipping 25 matching lines...) Expand all Loading... |
48 private: | 50 private: |
49 class Context; | 51 class Context; |
50 scoped_refptr<Context> context_; | 52 scoped_refptr<Context> context_; |
51 | 53 |
52 DISALLOW_COPY_AND_ASSIGN(WebURLLoaderImpl); | 54 DISALLOW_COPY_AND_ASSIGN(WebURLLoaderImpl); |
53 }; | 55 }; |
54 | 56 |
55 } // namespace content | 57 } // namespace content |
56 | 58 |
57 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ | 59 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ |
OLD | NEW |