OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef PPAPI_PROXY_FLASH_FONT_FILE_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_FLASH_FONT_FILE_RESOURCE_H_ |
6 #define PPAPI_PROXY_FLASH_FONT_FILE_RESOURCE_H_ | 6 #define PPAPI_PROXY_FLASH_FONT_FILE_RESOURCE_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 | 11 |
10 #include "base/containers/scoped_ptr_hash_map.h" | 12 #include "base/containers/scoped_ptr_hash_map.h" |
| 13 #include "base/macros.h" |
11 #include "ppapi/c/private/pp_private_font_charset.h" | 14 #include "ppapi/c/private/pp_private_font_charset.h" |
12 #include "ppapi/proxy/plugin_resource.h" | 15 #include "ppapi/proxy/plugin_resource.h" |
13 #include "ppapi/proxy/serialized_structs.h" | 16 #include "ppapi/proxy/serialized_structs.h" |
14 #include "ppapi/thunk/ppb_flash_font_file_api.h" | 17 #include "ppapi/thunk/ppb_flash_font_file_api.h" |
15 | 18 |
16 struct PP_BrowserFont_Trusted_Description; | 19 struct PP_BrowserFont_Trusted_Description; |
17 | 20 |
18 namespace ppapi { | 21 namespace ppapi { |
19 namespace proxy { | 22 namespace proxy { |
20 | 23 |
(...skipping 29 matching lines...) Expand all Loading... |
50 SerializedFontDescription description_; | 53 SerializedFontDescription description_; |
51 const PP_PrivateFontCharset charset_; | 54 const PP_PrivateFontCharset charset_; |
52 | 55 |
53 DISALLOW_COPY_AND_ASSIGN(FlashFontFileResource); | 56 DISALLOW_COPY_AND_ASSIGN(FlashFontFileResource); |
54 }; | 57 }; |
55 | 58 |
56 } // namespace proxy | 59 } // namespace proxy |
57 } // namespace ppapi | 60 } // namespace ppapi |
58 | 61 |
59 #endif // PPAPI_PROXY_FLASH_FONT_FILE_RESOURCE_H_ | 62 #endif // PPAPI_PROXY_FLASH_FONT_FILE_RESOURCE_H_ |
OLD | NEW |