Index: content/renderer/pepper/url_request_info_util.h |
diff --git a/content/renderer/pepper/url_request_info_util.h b/content/renderer/pepper/url_request_info_util.h |
index 4261535d2deac1f10082f29644633167827210a6..49c0d8e6f887166fd0d919229fcb284c1d3cb0e1 100644 |
--- a/content/renderer/pepper/url_request_info_util.h |
+++ b/content/renderer/pepper/url_request_info_util.h |
@@ -7,6 +7,7 @@ |
#include "base/memory/ref_counted.h" |
#include "content/common/content_export.h" |
+#include "ppapi/c/pp_instance.h" |
namespace ppapi { |
struct URLRequestInfoData; |
@@ -23,7 +24,8 @@ namespace content { |
// on success, false if the request is invalid (in which case *dest may be |
// partially initialized). Any upload files with only resource IDs (no file ref |
// pointers) will be populated by this function on success. |
-CONTENT_EXPORT bool CreateWebURLRequest(::ppapi::URLRequestInfoData* data, |
+CONTENT_EXPORT bool CreateWebURLRequest(PP_Instance instance, |
+ ::ppapi::URLRequestInfoData* data, |
yzshen1
2013/08/08 23:16:21
nit: you don't need '::' at the beginning.
teravest
2013/08/09 02:00:08
Done.
|
WebKit::WebFrame* frame, |
WebKit::WebURLRequest* dest); |