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 CONTENT_CHILD_BROWSER_FONT_RESOURCE_TRUSTED_H_ | 5 #ifndef CONTENT_CHILD_BROWSER_FONT_RESOURCE_TRUSTED_H_ |
6 #define CONTENT_CHILD_BROWSER_FONT_RESOURCE_TRUSTED_H_ | 6 #define CONTENT_CHILD_BROWSER_FONT_RESOURCE_TRUSTED_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_resource.h" | 14 #include "ppapi/c/pp_resource.h" |
15 #include "ppapi/c/pp_stdint.h" | 15 #include "ppapi/c/pp_stdint.h" |
16 #include "ppapi/proxy/plugin_resource.h" | 16 #include "ppapi/proxy/plugin_resource.h" |
17 #include "ppapi/shared_impl/ppapi_preferences.h" | 17 #include "ppapi/shared_impl/ppapi_preferences.h" |
18 #include "ppapi/thunk/ppb_browser_font_trusted_api.h" | 18 #include "ppapi/thunk/ppb_browser_font_trusted_api.h" |
19 | 19 |
20 class SkCanvas; | 20 class SkCanvas; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 private: | 70 private: |
71 scoped_ptr<blink::WebFont> font_; | 71 scoped_ptr<blink::WebFont> font_; |
72 | 72 |
73 DISALLOW_COPY_AND_ASSIGN(BrowserFontResource_Trusted); | 73 DISALLOW_COPY_AND_ASSIGN(BrowserFontResource_Trusted); |
74 }; | 74 }; |
75 | 75 |
76 } // namespace content | 76 } // namespace content |
77 | 77 |
78 #endif // CONTENT_CHILD_BROWSER_FONT_RESOURCE_TRUSTED_H_ | 78 #endif // CONTENT_CHILD_BROWSER_FONT_RESOURCE_TRUSTED_H_ |
OLD | NEW |