Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Side by Side Diff: content/child/web_url_loader_impl.h

Issue 488393002: Add some includes to web_url_loader_impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/child/web_url_loader_impl_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/child/web_url_loader_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698