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_PLUGIN_WEBPLUGIN_PROXY_H_ | 5 #ifndef CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ |
6 #define CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ | 6 #define CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #if defined(OS_MACOSX) | 12 #if defined(OS_MACOSX) |
13 #include "base/mac/scoped_cftyperef.h" | 13 #include "base/mac/scoped_cftyperef.h" |
14 #endif | 14 #endif |
15 #include "base/memory/scoped_handle.h" | |
16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/shared_memory.h" | 16 #include "base/memory/shared_memory.h" |
18 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
19 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
20 #include "content/child/npapi/webplugin.h" | 19 #include "content/child/npapi/webplugin.h" |
21 #include "ipc/ipc_message.h" | 20 #include "ipc/ipc_message.h" |
22 #include "ipc/ipc_sender.h" | 21 #include "ipc/ipc_sender.h" |
23 #include "skia/ext/refptr.h" | 22 #include "skia/ext/refptr.h" |
24 #include "third_party/skia/include/core/SkCanvas.h" | 23 #include "third_party/skia/include/core/SkCanvas.h" |
25 #include "url/gurl.h" | 24 #include "url/gurl.h" |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 | 212 |
214 // Contains the routing id of the host render view. | 213 // Contains the routing id of the host render view. |
215 int host_render_view_routing_id_; | 214 int host_render_view_routing_id_; |
216 | 215 |
217 base::WeakPtrFactory<WebPluginProxy> weak_factory_; | 216 base::WeakPtrFactory<WebPluginProxy> weak_factory_; |
218 }; | 217 }; |
219 | 218 |
220 } // namespace content | 219 } // namespace content |
221 | 220 |
222 #endif // CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ | 221 #endif // CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ |
OLD | NEW |