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 <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 #include "ppapi/thunk/resource_creation_api.h" | 52 #include "ppapi/thunk/resource_creation_api.h" |
53 #include "skia/ext/refptr.h" | 53 #include "skia/ext/refptr.h" |
54 #include "third_party/WebKit/public/platform/WebCanvas.h" | 54 #include "third_party/WebKit/public/platform/WebCanvas.h" |
55 #include "third_party/WebKit/public/platform/WebString.h" | 55 #include "third_party/WebKit/public/platform/WebString.h" |
56 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 56 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
57 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 57 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
58 #include "third_party/WebKit/public/web/WebPlugin.h" | 58 #include "third_party/WebKit/public/web/WebPlugin.h" |
59 #include "third_party/WebKit/public/web/WebUserGestureToken.h" | 59 #include "third_party/WebKit/public/web/WebUserGestureToken.h" |
60 #include "ui/base/ime/text_input_type.h" | 60 #include "ui/base/ime/text_input_type.h" |
61 #include "ui/events/latency_info.h" | 61 #include "ui/events/latency_info.h" |
62 #include "ui/gfx/rect.h" | 62 #include "ui/gfx/geometry/rect.h" |
63 #include "url/gurl.h" | 63 #include "url/gurl.h" |
64 #include "v8/include/v8.h" | 64 #include "v8/include/v8.h" |
65 | 65 |
66 struct PP_Point; | 66 struct PP_Point; |
67 struct _NPP; | 67 struct _NPP; |
68 | 68 |
69 class SkBitmap; | 69 class SkBitmap; |
70 class TransportDIB; | 70 class TransportDIB; |
71 | 71 |
72 namespace blink { | 72 namespace blink { |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
915 // view change events. | 915 // view change events. |
916 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; | 916 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; |
917 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; | 917 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; |
918 | 918 |
919 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); | 919 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); |
920 }; | 920 }; |
921 | 921 |
922 } // namespace content | 922 } // namespace content |
923 | 923 |
924 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 924 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
OLD | NEW |