| 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_NPAPI_WEBPLUGIN_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_NPAPI_WEBPLUGIN_IMPL_H_ |
| 6 #define CONTENT_RENDERER_NPAPI_WEBPLUGIN_IMPL_H_ | 6 #define CONTENT_RENDERER_NPAPI_WEBPLUGIN_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 class IOSurfaceLayer; | 29 class IOSurfaceLayer; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 class WebFrame; | 33 class WebFrame; |
| 34 class WebLayer; | 34 class WebLayer; |
| 35 class WebPluginContainer; | 35 class WebPluginContainer; |
| 36 class WebURLResponse; | 36 class WebURLResponse; |
| 37 class WebURLLoader; | 37 class WebURLLoader; |
| 38 class WebURLRequest; | 38 class WebURLRequest; |
| 39 struct WebPluginParams; |
| 39 } | 40 } |
| 40 | 41 |
| 41 namespace content { | 42 namespace content { |
| 42 class MultipartResponseDelegate; | 43 class MultipartResponseDelegate; |
| 43 class RenderFrameImpl; | 44 class RenderFrameImpl; |
| 44 class RenderViewImpl; | 45 class RenderViewImpl; |
| 45 class WebPluginDelegateProxy; | 46 class WebPluginDelegateProxy; |
| 46 | 47 |
| 47 // This is the WebKit side of the plugin implementation that forwards calls, | 48 // This is the WebKit side of the plugin implementation that forwards calls, |
| 48 // after changing out of WebCore types, to a delegate. The delegate may | 49 // after changing out of WebCore types, to a delegate. The delegate may |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 LoaderClient loader_client_; | 358 LoaderClient loader_client_; |
| 358 | 359 |
| 359 base::WeakPtrFactory<WebPluginImpl> weak_factory_; | 360 base::WeakPtrFactory<WebPluginImpl> weak_factory_; |
| 360 | 361 |
| 361 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); | 362 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); |
| 362 }; | 363 }; |
| 363 | 364 |
| 364 } // namespace content | 365 } // namespace content |
| 365 | 366 |
| 366 #endif // CONTENT_RENDERER_NPAPI_WEBPLUGIN_IMPL_H_ | 367 #endif // CONTENT_RENDERER_NPAPI_WEBPLUGIN_IMPL_H_ |
| OLD | NEW |