diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-15 18:57:26 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-15 18:57:26 +0000 |
commit | 1df8d42d4d36358480f3a9c86e22d43a3da36c53 (patch) | |
tree | e5835165c330391e9b5aa391838541662b195032 | |
parent | 7112138830105a8eae1e4a2247cee18e9ce66fbf (diff) | |
download | chromium_src-1df8d42d4d36358480f3a9c86e22d43a3da36c53.zip chromium_src-1df8d42d4d36358480f3a9c86e22d43a3da36c53.tar.gz chromium_src-1df8d42d4d36358480f3a9c86e22d43a3da36c53.tar.bz2 |
Linux: remove some unused structures from SkFontHost_fontconfig_ipc.h
(These were a merge artifact from r18405 which additionally broke the build on
GCC 4.4).
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18413 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | skia/ext/SkFontHost_fontconfig_ipc.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/skia/ext/SkFontHost_fontconfig_ipc.h b/skia/ext/SkFontHost_fontconfig_ipc.h index 5efd1ee..9965cb6 100644 --- a/skia/ext/SkFontHost_fontconfig_ipc.h +++ b/skia/ext/SkFontHost_fontconfig_ipc.h @@ -41,32 +41,6 @@ class FontConfigIPC : public FontConfigInterface { METHOD_OPEN = 1, }; - struct MatchRequest { - uint16_t method; - uint8_t fileid_valid; - uint32_t fileid; - int8_t is_bold; - int8_t is_italic; - uint8_t family_len; - // char family[0] follows. - }; - - struct MatchReply { - uint8_t result; - uint32_t result_fileid; - uint16_t filename_len; - // char filename[0] follows. - }; - - struct OpenRequest { - uint16_t method; - unsigned fileid; - }; - - struct OpenReply { - uint8_t result; - }; - private: const int fd_; }; |