Index: content/zygote/zygote_main_linux.cc |
diff --git a/content/zygote/zygote_main_linux.cc b/content/zygote/zygote_main_linux.cc |
index 1aee6bd77ad76b56359f3f5a306f164c3ac4dda6..419b938d4a568cd700aea8050f3cd0506e62480c 100644 |
--- a/content/zygote/zygote_main_linux.cc |
+++ b/content/zygote/zygote_main_linux.cc |
@@ -93,7 +93,7 @@ void RunTwoClosures(const base::Closure* first, const base::Closure* second) { |
static void ProxyLocaltimeCallToBrowser(time_t input, struct tm* output, |
char* timezone_out, |
size_t timezone_out_len) { |
- Pickle request; |
+ base::Pickle request; |
request.WriteInt(LinuxSandbox::METHOD_LOCALTIME); |
request.WriteString( |
std::string(reinterpret_cast<char*>(&input), sizeof(input))); |
@@ -107,8 +107,8 @@ static void ProxyLocaltimeCallToBrowser(time_t input, struct tm* output, |
return; |
} |
- Pickle reply(reinterpret_cast<char*>(reply_buf), r); |
- PickleIterator iter(reply); |
+ base::Pickle reply(reinterpret_cast<char*>(reply_buf), r); |
+ base::PickleIterator iter(reply); |
std::string result, timezone; |
if (!iter.ReadString(&result) || |
!iter.ReadString(&timezone) || |