| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_PEPPER_URL_REQUEST_INFO_UTIL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_URL_REQUEST_INFO_UTIL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_URL_REQUEST_INFO_UTIL_H_ | 6 #define CONTENT_RENDERER_PEPPER_URL_REQUEST_INFO_UTIL_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/WebURLRequest.h" |
| 10 | 11 |
| 11 namespace ppapi { | 12 namespace ppapi { |
| 12 struct URLRequestInfoData; | 13 struct URLRequestInfoData; |
| 13 } | 14 } |
| 14 | 15 |
| 15 namespace WebKit { | 16 namespace WebKit { |
| 16 class WebFrame; | 17 class WebFrame; |
| 17 class WebURLRequest; | 18 class WebURLRequest; |
| 18 } | 19 } |
| 19 | 20 |
| 20 namespace content { | 21 namespace content { |
| 21 | 22 |
| 22 // Creates the WebKit URL request from the current request info. Returns true | 23 // Creates the WebKit URL request from the current request info. Returns true |
| 23 // on success, false if the request is invalid (in which case *dest may be | 24 // on success, false if the request is invalid (in which case *dest may be |
| 24 // partially initialized). Any upload files with only resource IDs (no file ref | 25 // partially initialized). Any upload files with only resource IDs (no file ref |
| 25 // pointers) will be populated by this function on success. | 26 // pointers) will be populated by this function on success. |
| 26 CONTENT_EXPORT bool CreateWebURLRequest(ppapi::URLRequestInfoData* data, | 27 CONTENT_EXPORT bool CreateWebURLRequest( |
| 27 WebKit::WebFrame* frame, | 28 ppapi::URLRequestInfoData* data, |
| 28 WebKit::WebURLRequest* dest); | 29 WebKit::WebURLRequest::TargetType target_type, |
| 30 WebKit::WebFrame* frame, |
| 31 WebKit::WebURLRequest* dest); |
| 29 | 32 |
| 30 // Returns true if universal access is required to use the given request. | 33 // Returns true if universal access is required to use the given request. |
| 31 CONTENT_EXPORT bool URLRequestRequiresUniversalAccess( | 34 CONTENT_EXPORT bool URLRequestRequiresUniversalAccess( |
| 32 const ppapi::URLRequestInfoData& data); | 35 const ppapi::URLRequestInfoData& data); |
| 33 | 36 |
| 34 } // namespace content | 37 } // namespace content |
| 35 | 38 |
| 36 #endif // CONTENT_RENDERER_PEPPER_PPB_URL_REQUEST_INFO_UTIL_H_ | 39 #endif // CONTENT_RENDERER_PEPPER_PPB_URL_REQUEST_INFO_UTIL_H_ |
| OLD | NEW |