Index: ppapi/proxy/serialized_handle.cc |
diff --git a/ppapi/proxy/serialized_handle.cc b/ppapi/proxy/serialized_handle.cc |
index 7d06c763b31c8a922fdd87dce146c7d4069cc2f7..ee0f359f082446fbbfef31e1eb6fa58c5b4dc761 100644 |
--- a/ppapi/proxy/serialized_handle.cc |
+++ b/ppapi/proxy/serialized_handle.cc |
@@ -90,7 +90,7 @@ void SerializedHandle::Close() { |
} |
// static |
-bool SerializedHandle::WriteHeader(const Header& hdr, Pickle* pickle) { |
+bool SerializedHandle::WriteHeader(const Header& hdr, base::Pickle* pickle) { |
if (!pickle->WriteInt(hdr.type)) |
return false; |
if (hdr.type == SHARED_MEMORY) { |
@@ -105,7 +105,7 @@ bool SerializedHandle::WriteHeader(const Header& hdr, Pickle* pickle) { |
} |
// static |
-bool SerializedHandle::ReadHeader(PickleIterator* iter, Header* hdr) { |
+bool SerializedHandle::ReadHeader(base::PickleIterator* iter, Header* hdr) { |
*hdr = Header(INVALID, 0, 0, 0); |
int type = 0; |
if (!iter->ReadInt(&type)) |