| OLD | NEW |
| 1 /* libs/graphics/ports/SkFontHost_fontconfig_ipc.h | 1 /* libs/graphics/ports/SkFontHost_fontconfig_ipc.h |
| 2 ** | 2 ** |
| 3 ** Copyright 2009, Google Inc. | 3 ** Copyright 2009, Google Inc. |
| 4 ** | 4 ** |
| 5 ** Licensed under the Apache License, Version 2.0 (the "License"); | 5 ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 ** you may not use this file except in compliance with the License. | 6 ** you may not use this file except in compliance with the License. |
| 7 ** You may obtain a copy of the License at | 7 ** You may obtain a copy of the License at |
| 8 ** | 8 ** |
| 9 ** http://www.apache.org/licenses/LICENSE-2.0 | 9 ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 ** | 10 ** |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "SkFontHost_fontconfig_impl.h" | 26 #include "SkFontHost_fontconfig_impl.h" |
| 27 | 27 |
| 28 class FontConfigIPC : public FontConfigInterface { | 28 class FontConfigIPC : public FontConfigInterface { |
| 29 public: | 29 public: |
| 30 FontConfigIPC(int fd); | 30 FontConfigIPC(int fd); |
| 31 ~FontConfigIPC(); | 31 ~FontConfigIPC(); |
| 32 | 32 |
| 33 // FontConfigInterface implementation. | 33 // FontConfigInterface implementation. |
| 34 virtual bool Match(std::string* result_family, unsigned* result_fileid, | 34 virtual bool Match(std::string* result_family, unsigned* result_fileid, |
| 35 bool fileid_valid, unsigned fileid, | 35 bool fileid_valid, unsigned fileid, |
| 36 const std::string& family, int is_bold, int is_italic); | 36 const std::string& family, bool* is_bold, bool* is_italic
); |
| 37 virtual int Open(unsigned fileid); | 37 virtual int Open(unsigned fileid); |
| 38 | 38 |
| 39 enum Method { | 39 enum Method { |
| 40 METHOD_MATCH = 0, | 40 METHOD_MATCH = 0, |
| 41 METHOD_OPEN = 1, | 41 METHOD_OPEN = 1, |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 const int fd_; | 45 const int fd_; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 #endif // FontConfigIPC_DEFINED | 48 #endif // FontConfigIPC_DEFINED |
| OLD | NEW |