| Index: content/browser/renderer_host/sandbox_ipc_linux.h
|
| diff --git a/content/browser/renderer_host/sandbox_ipc_linux.h b/content/browser/renderer_host/sandbox_ipc_linux.h
|
| index 23a65e0d2153fe895b147b45f6743f9ef17dbc9c..6a0a3031ca55256dc16c5f124e6e299fc2f80663 100644
|
| --- a/content/browser/renderer_host/sandbox_ipc_linux.h
|
| +++ b/content/browser/renderer_host/sandbox_ipc_linux.h
|
| @@ -37,33 +37,33 @@ class SandboxIPCHandler : public base::DelegateSimpleThread::Delegate {
|
|
|
| void HandleFontMatchRequest(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| void HandleFontOpenRequest(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| void HandleGetFallbackFontForChar(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| void HandleGetStyleForStrike(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| void HandleLocaltime(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| void HandleMakeSharedMemorySegment(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| void HandleMatchWithFallback(int fd,
|
| base::PickleIterator iter,
|
| - const std::vector<base::ScopedFD*>& fds);
|
| + const std::vector<base::ScopedFD>& fds);
|
|
|
| - void SendRendererReply(const std::vector<base::ScopedFD*>& fds,
|
| + void SendRendererReply(const std::vector<base::ScopedFD>& fds,
|
| const base::Pickle& reply,
|
| int reply_fd);
|
|
|
|
|