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/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
10 #include "third_party/WebKit/public/platform/WebURLLoader.h" | 10 #include "third_party/WebKit/public/platform/WebURLLoader.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 blink::WebURLResponse& response, | 32 blink::WebURLResponse& response, |
33 blink::WebURLError& error, | 33 blink::WebURLError& error, |
34 blink::WebData& data); | 34 blink::WebData& data); |
35 virtual void loadAsynchronously( | 35 virtual void loadAsynchronously( |
36 const blink::WebURLRequest& request, | 36 const blink::WebURLRequest& request, |
37 blink::WebURLLoaderClient* client); | 37 blink::WebURLLoaderClient* client); |
38 virtual void cancel(); | 38 virtual void cancel(); |
39 virtual void setDefersLoading(bool value); | 39 virtual void setDefersLoading(bool value); |
40 virtual void didChangePriority(blink::WebURLRequest::Priority new_priority, | 40 virtual void didChangePriority(blink::WebURLRequest::Priority new_priority, |
41 int intra_priority_value); | 41 int intra_priority_value); |
| 42 virtual bool attachThreadedDataReceiver( |
| 43 blink::WebThreadedDataReceiver* threaded_data_receiver); |
42 | 44 |
43 private: | 45 private: |
44 class Context; | 46 class Context; |
45 scoped_refptr<Context> context_; | 47 scoped_refptr<Context> context_; |
46 }; | 48 }; |
47 | 49 |
48 } // namespace content | 50 } // namespace content |
49 | 51 |
50 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ | 52 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ |
OLD | NEW |