Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / content / browser / renderer_host / sandbox_ipc_linux.h
blobe9009546dea32e8d40ea9218d19f95150457b123
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // http://code.google.com/p/chromium/wiki/LinuxSandboxIPC
7 #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
8 #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
10 #include <vector>
12 #include "base/files/scoped_file.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/pickle.h"
15 #include "content/child/blink_platform_impl.h"
16 #include "skia/ext/skia_utils_base.h"
18 namespace content {
20 class SandboxIPCProcess {
21 public:
22 // lifeline_fd: this is the read end of a pipe which the browser process
23 // holds the other end of. If the browser process dies, its descriptors are
24 // closed and we will noticed an EOF on the pipe. That's our signal to exit.
25 // browser_socket: the browser's end of the sandbox IPC socketpair. From the
26 // point of view of the renderer, it's talking to the browser but this
27 // object actually services the requests.
28 // sandbox_cmd: the path of the sandbox executable.
29 SandboxIPCProcess(int lifeline_fd,
30 int browser_socket,
31 std::string sandbox_cmd);
32 ~SandboxIPCProcess();
34 void Run();
36 private:
37 void EnsureWebKitInitialized();
39 int FindOrAddPath(const SkString& path);
41 void HandleRequestFromRenderer(int fd);
43 void HandleFontMatchRequest(int fd,
44 const Pickle& pickle,
45 PickleIterator iter,
46 const std::vector<base::ScopedFD*>& fds);
48 void HandleFontOpenRequest(int fd,
49 const Pickle& pickle,
50 PickleIterator iter,
51 const std::vector<base::ScopedFD*>& fds);
53 void HandleGetFontFamilyForChar(int fd,
54 const Pickle& pickle,
55 PickleIterator iter,
56 const std::vector<base::ScopedFD*>& fds);
58 void HandleGetStyleForStrike(int fd,
59 const Pickle& pickle,
60 PickleIterator iter,
61 const std::vector<base::ScopedFD*>& fds);
63 void HandleLocaltime(int fd,
64 const Pickle& pickle,
65 PickleIterator iter,
66 const std::vector<base::ScopedFD*>& fds);
68 void HandleGetChildWithInode(int fd,
69 const Pickle& pickle,
70 PickleIterator iter,
71 const std::vector<base::ScopedFD*>& fds);
73 void HandleMakeSharedMemorySegment(int fd,
74 const Pickle& pickle,
75 PickleIterator iter,
76 const std::vector<base::ScopedFD*>& fds);
78 void HandleMatchWithFallback(int fd,
79 const Pickle& pickle,
80 PickleIterator iter,
81 const std::vector<base::ScopedFD*>& fds);
83 void SendRendererReply(const std::vector<base::ScopedFD*>& fds,
84 const Pickle& reply,
85 int reply_fd);
87 const int lifeline_fd_;
88 const int browser_socket_;
89 std::vector<std::string> sandbox_cmd_;
90 scoped_ptr<BlinkPlatformImpl> webkit_platform_support_;
91 SkTDArray<SkString*> paths_;
93 DISALLOW_COPY_AND_ASSIGN(SandboxIPCProcess);
96 } // namespace content
98 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_