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_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 namespace gfx { | 89 namespace gfx { |
90 class Range; | 90 class Range; |
91 class Rect; | 91 class Rect; |
92 } | 92 } |
93 | 93 |
94 namespace ppapi { | 94 namespace ppapi { |
95 class Resource; | 95 class Resource; |
96 struct InputEventData; | 96 struct InputEventData; |
97 struct PPP_Instance_Combined; | 97 struct PPP_Instance_Combined; |
| 98 struct URLResponseInfoData; |
98 class ScopedPPVar; | 99 class ScopedPPVar; |
99 } | 100 } |
100 | 101 |
101 namespace printing { | 102 namespace printing { |
102 class PdfMetafileSkia; | 103 class PdfMetafileSkia; |
103 } | 104 } |
104 | 105 |
105 namespace content { | 106 namespace content { |
106 | 107 |
107 class ContentDecryptorDelegate; | 108 class ContentDecryptorDelegate; |
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
987 // view change events. | 988 // view change events. |
988 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; | 989 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; |
989 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; | 990 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; |
990 | 991 |
991 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); | 992 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); |
992 }; | 993 }; |
993 | 994 |
994 } // namespace content | 995 } // namespace content |
995 | 996 |
996 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 997 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
OLD | NEW |