| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ |
| 6 #define WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ | 6 #define WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoader.h" | 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoader.h" |
| 10 #include "webkit/glue/webkit_glue_export.h" | 10 #include "webkit/glue/webkit_glue_export.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 virtual void loadSynchronously( | 22 virtual void loadSynchronously( |
| 23 const WebKit::WebURLRequest& request, | 23 const WebKit::WebURLRequest& request, |
| 24 WebKit::WebURLResponse& response, | 24 WebKit::WebURLResponse& response, |
| 25 WebKit::WebURLError& error, | 25 WebKit::WebURLError& error, |
| 26 WebKit::WebData& data); | 26 WebKit::WebData& data); |
| 27 virtual void loadAsynchronously( | 27 virtual void loadAsynchronously( |
| 28 const WebKit::WebURLRequest& request, | 28 const WebKit::WebURLRequest& request, |
| 29 WebKit::WebURLLoaderClient* client); | 29 WebKit::WebURLLoaderClient* client); |
| 30 virtual void cancel(); | 30 virtual void cancel(); |
| 31 virtual void setDefersLoading(bool value); | 31 virtual void setDefersLoading(bool value); |
| 32 virtual void didChangePriority(WebKit::WebURLRequest::Priority new_priority); | |
| 33 | 32 |
| 34 private: | 33 private: |
| 35 class Context; | 34 class Context; |
| 36 scoped_refptr<Context> context_; | 35 scoped_refptr<Context> context_; |
| 37 WebKitPlatformSupportImpl* platform_; | 36 WebKitPlatformSupportImpl* platform_; |
| 38 }; | 37 }; |
| 39 | 38 |
| 40 } // namespace webkit_glue | 39 } // namespace webkit_glue |
| 41 | 40 |
| 42 #endif // WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ | 41 #endif // WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ |
| OLD | NEW |