Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Side by Side Diff: content/browser/renderer_host/sandbox_ipc_linux.h

Issue 255693002: Make SandboxIPCProcess a thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // http://code.google.com/p/chromium/wiki/LinuxSandboxIPC 5 // http://code.google.com/p/chromium/wiki/LinuxSandboxIPC
6 6
7 #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_ 7 #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
8 #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_ 8 #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/files/scoped_file.h" 12 #include "base/files/scoped_file.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/pickle.h" 14 #include "base/pickle.h"
15 #include "base/threading/simple_thread.h"
15 #include "content/child/blink_platform_impl.h" 16 #include "content/child/blink_platform_impl.h"
16 #include "skia/ext/skia_utils_base.h" 17 #include "skia/ext/skia_utils_base.h"
17 18
18 namespace content { 19 namespace content {
19 20
20 class SandboxIPCProcess { 21 class SandboxIPCHandler : public base::DelegateSimpleThread::Delegate {
21 public: 22 public:
22 // lifeline_fd: this is the read end of a pipe which the browser process 23 // browser_socket: the browser's end of the sandbox IPC socketpair.
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. 24 // sandbox_cmd: the path of the sandbox executable.
29 SandboxIPCProcess(int lifeline_fd, 25 SandboxIPCHandler(int browser_socket,
30 int browser_socket,
31 std::string sandbox_cmd); 26 std::string sandbox_cmd);
32 ~SandboxIPCProcess(); 27 virtual ~SandboxIPCHandler();
33 28
34 void Run(); 29 virtual void Run() OVERRIDE;
35 30
36 private: 31 private:
37 void EnsureWebKitInitialized(); 32 void EnsureWebKitInitialized();
38 33
39 int FindOrAddPath(const SkString& path); 34 int FindOrAddPath(const SkString& path);
40 35
41 void HandleRequestFromRenderer(int fd); 36 void HandleRequestFromRenderer(int fd);
42 37
43 void HandleFontMatchRequest(int fd, 38 void HandleFontMatchRequest(int fd,
44 const Pickle& pickle, 39 const Pickle& pickle,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 72
78 void HandleMatchWithFallback(int fd, 73 void HandleMatchWithFallback(int fd,
79 const Pickle& pickle, 74 const Pickle& pickle,
80 PickleIterator iter, 75 PickleIterator iter,
81 const std::vector<base::ScopedFD*>& fds); 76 const std::vector<base::ScopedFD*>& fds);
82 77
83 void SendRendererReply(const std::vector<base::ScopedFD*>& fds, 78 void SendRendererReply(const std::vector<base::ScopedFD*>& fds,
84 const Pickle& reply, 79 const Pickle& reply,
85 int reply_fd); 80 int reply_fd);
86 81
87 const int lifeline_fd_;
88 const int browser_socket_; 82 const int browser_socket_;
89 std::vector<std::string> sandbox_cmd_; 83 std::vector<std::string> sandbox_cmd_;
90 scoped_ptr<BlinkPlatformImpl> webkit_platform_support_; 84 scoped_ptr<BlinkPlatformImpl> webkit_platform_support_;
91 SkTDArray<SkString*> paths_; 85 SkTDArray<SkString*> paths_;
92 86
93 DISALLOW_COPY_AND_ASSIGN(SandboxIPCProcess); 87 DISALLOW_COPY_AND_ASSIGN(SandboxIPCHandler);
94 }; 88 };
95 89
96 } // namespace content 90 } // namespace content
97 91
98 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_ 92 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_sandbox_host_linux.cc ('k') | content/browser/renderer_host/sandbox_ipc_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698