diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 00:26:18 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 00:26:18 +0000 |
commit | 797c355020734dc32ffa57f54d032afa20f018c8 (patch) | |
tree | 8a3a745aea8a8b7bf81c049f387eaa6321bf9bbc /content/common/font_config_ipc_linux.h | |
parent | f6179ec31d0d530bd2ed66808bb24b601d60d453 (diff) | |
download | chromium_src-797c355020734dc32ffa57f54d032afa20f018c8.zip chromium_src-797c355020734dc32ffa57f54d032afa20f018c8.tar.gz chromium_src-797c355020734dc32ffa57f54d032afa20f018c8.tar.bz2 |
Move a bunch of files from chrome\common to content\common.
TBR=avi
Review URL: http://codereview.chromium.org/6677096
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78473 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/font_config_ipc_linux.h')
-rw-r--r-- | content/common/font_config_ipc_linux.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/content/common/font_config_ipc_linux.h b/content/common/font_config_ipc_linux.h new file mode 100644 index 0000000..4873c14 --- /dev/null +++ b/content/common/font_config_ipc_linux.h @@ -0,0 +1,40 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_ +#define CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_ +#pragma once + +#include "skia/ext/SkFontHost_fontconfig_impl.h" + +#include <string> + +// FontConfig implementation for Skia that proxies out of process to get out +// of the sandbox. See http://code.google.com/p/chromium/wiki/LinuxSandboxIPC +class FontConfigIPC : public FontConfigInterface { + public: + explicit FontConfigIPC(int fd); + ~FontConfigIPC(); + + // FontConfigInterface implementation. + virtual bool Match(std::string* result_family, + unsigned* result_filefaceid, + bool filefaceid_valid, + unsigned filefaceid, + const std::string& family, + const void* characters, + size_t characters_bytes, + bool* is_bold, bool* is_italic); + virtual int Open(unsigned filefaceid); + + enum Method { + METHOD_MATCH = 0, + METHOD_OPEN = 1, + }; + + private: + const int fd_; +}; + +#endif // CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_ |