OLD | NEW |
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> |
(...skipping 27 matching lines...) Expand all Loading... |
38 void HandleFontMatchRequest(int fd, | 38 void HandleFontMatchRequest(int fd, |
39 const Pickle& pickle, | 39 const Pickle& pickle, |
40 PickleIterator iter, | 40 PickleIterator iter, |
41 const std::vector<base::ScopedFD*>& fds); | 41 const std::vector<base::ScopedFD*>& fds); |
42 | 42 |
43 void HandleFontOpenRequest(int fd, | 43 void HandleFontOpenRequest(int fd, |
44 const Pickle& pickle, | 44 const Pickle& pickle, |
45 PickleIterator iter, | 45 PickleIterator iter, |
46 const std::vector<base::ScopedFD*>& fds); | 46 const std::vector<base::ScopedFD*>& fds); |
47 | 47 |
48 void HandleGetFontFamilyForChar(int fd, | 48 void HandleGetFallbackFontForChar(int fd, |
49 const Pickle& pickle, | 49 const Pickle& pickle, |
50 PickleIterator iter, | 50 PickleIterator iter, |
51 const std::vector<base::ScopedFD*>& fds); | 51 const std::vector<base::ScopedFD*>& fds); |
52 | 52 |
53 void HandleGetStyleForStrike(int fd, | 53 void HandleGetStyleForStrike(int fd, |
54 const Pickle& pickle, | 54 const Pickle& pickle, |
55 PickleIterator iter, | 55 PickleIterator iter, |
56 const std::vector<base::ScopedFD*>& fds); | 56 const std::vector<base::ScopedFD*>& fds); |
57 | 57 |
58 void HandleLocaltime(int fd, | 58 void HandleLocaltime(int fd, |
(...skipping 19 matching lines...) Expand all Loading... |
78 const int browser_socket_; | 78 const int browser_socket_; |
79 scoped_ptr<BlinkPlatformImpl> webkit_platform_support_; | 79 scoped_ptr<BlinkPlatformImpl> webkit_platform_support_; |
80 SkTDArray<SkString*> paths_; | 80 SkTDArray<SkString*> paths_; |
81 | 81 |
82 DISALLOW_COPY_AND_ASSIGN(SandboxIPCHandler); | 82 DISALLOW_COPY_AND_ASSIGN(SandboxIPCHandler); |
83 }; | 83 }; |
84 | 84 |
85 } // namespace content | 85 } // namespace content |
86 | 86 |
87 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_ | 87 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_ |
OLD | NEW |