OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
6 #define CHROME_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/id_map.h" | 13 #include "base/id_map.h" |
14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
15 #include "base/weak_ptr.h" | 15 #include "base/weak_ptr.h" |
16 #include "webkit/plugins/ppapi/plugin_delegate.h" | 16 #include "webkit/plugins/ppapi/plugin_delegate.h" |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 | 192 |
193 IDMap<scoped_refptr<webkit::ppapi::PPB_Flash_NetConnector_Impl>, | 193 IDMap<scoped_refptr<webkit::ppapi::PPB_Flash_NetConnector_Impl>, |
194 IDMapOwnPointer> pending_connect_tcps_; | 194 IDMapOwnPointer> pending_connect_tcps_; |
195 | 195 |
196 IDMap<scoped_refptr<webkit::ppapi::PPB_Flash_Menu_Impl>, | 196 IDMap<scoped_refptr<webkit::ppapi::PPB_Flash_Menu_Impl>, |
197 IDMapOwnPointer> pending_context_menus_; | 197 IDMapOwnPointer> pending_context_menus_; |
198 | 198 |
199 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 199 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
200 }; | 200 }; |
201 | 201 |
202 #endif // CHROME_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 202 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |