summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/serialized_handle.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/proxy/serialized_handle.cc')
-rw-r--r--ppapi/proxy/serialized_handle.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/serialized_handle.cc b/ppapi/proxy/serialized_handle.cc
index 7d06c76..ee0f359 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))