OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_PLUGINS_PPAPI_PLUGIN_OBJECT_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_OBJECT_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_OBJECT_H_ | 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_OBJECT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 | 11 |
12 struct PP_Var; | 12 struct PP_Var; |
13 struct PPP_Class_Deprecated; | 13 struct PPP_Class_Deprecated; |
14 typedef struct NPObject NPObject; | 14 typedef struct NPObject NPObject; |
15 typedef struct _NPVariant NPVariant; | 15 typedef struct _NPVariant NPVariant; |
16 | 16 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 const PPP_Class_Deprecated* ppp_class_; | 86 const PPP_Class_Deprecated* ppp_class_; |
87 void* ppp_class_data_; | 87 void* ppp_class_data_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(PluginObject); | 89 DISALLOW_COPY_AND_ASSIGN(PluginObject); |
90 }; | 90 }; |
91 | 91 |
92 } // namespace ppapi | 92 } // namespace ppapi |
93 } // namespace webkit | 93 } // namespace webkit |
94 | 94 |
95 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_OBJECT_H_ | 95 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_OBJECT_H_ |
OLD | NEW |