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

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

Issue 327633002: Introduce WebFallbackFont on the Chromium side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missing rename in DEPS file Created 6 years, 6 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
« no previous file with comments | « no previous file | content/browser/renderer_host/sandbox_ipc_linux.cc » ('j') | content/common/DEPS » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
(...skipping 27 matching lines...) Expand all
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/sandbox_ipc_linux.cc » ('j') | content/common/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698