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

Side by Side Diff: chrome/renderer/renderer_sandbox_support_linux.h

Issue 132007: Linux: plumb fontconfig call out to the sandbox host. (Closed)
Patch Set: ... Created 11 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
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file.
4
5 #ifndef CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_H_
6 #define CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_H_
7
8 #include <stdint.h>
9
10 #include <string>
11
12 namespace renderer_sandbox_support {
13
14 // Return a font family which provides glyphs for the Unicode code points
15 // specified by |utf16|
16 // utf16: a native-endian UTF16 string
17 // num_utf16: the number of 16-bit words in |utf16|
18 //
19 // Returns: the font family or an empty string if the request could not be
20 // satisfied.
21 std::string getFontFamilyForCharacters(const uint16_t* utf16, size_t num_utf16);
22
23 }; // namespace render_sandbox_support
24
25 #endif // CHROME_RENDERER_RENDER_SANDBOX_SUPPORT_H_
OLDNEW
« no previous file with comments | « chrome/common/sandbox_methods_linux.h ('k') | chrome/renderer/renderer_sandbox_support_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698