Index: ppapi/proxy/serialized_handle.h |
diff --git a/ppapi/proxy/serialized_handle.h b/ppapi/proxy/serialized_handle.h |
index 252ffcb9f3ccd2549cb4f9454223315382f6522e..6e765fd35fa746f89fce593c92a2762b10b494f9 100644 |
--- a/ppapi/proxy/serialized_handle.h |
+++ b/ppapi/proxy/serialized_handle.h |
@@ -18,7 +18,9 @@ |
#include "ppapi/c/pp_resource.h" |
#include "ppapi/proxy/ppapi_proxy_export.h" |
+namespace base { |
class Pickle; |
+} |
namespace ppapi { |
namespace proxy { |
@@ -129,8 +131,8 @@ class PPAPI_PROXY_EXPORT SerializedHandle { |
// Write/Read a Header, which contains all the data except the handle. This |
// allows us to write the handle in a platform-specific way, as is necessary |
// in NaClIPCAdapter to share handles with NaCl from Windows. |
- static bool WriteHeader(const Header& hdr, Pickle* pickle); |
- static bool ReadHeader(PickleIterator* iter, Header* hdr); |
+ static bool WriteHeader(const Header& hdr, base::Pickle* pickle); |
+ static bool ReadHeader(base::PickleIterator* iter, Header* hdr); |
private: |
// The kind of handle we're holding. |