| 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 WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_IMPL_H_ | 6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "googleurl/src/gurl.h" | |
| 17 #include "third_party/WebKit/public/platform/WebRect.h" | 16 #include "third_party/WebKit/public/platform/WebRect.h" |
| 18 #include "third_party/WebKit/public/platform/WebString.h" | 17 #include "third_party/WebKit/public/platform/WebString.h" |
| 19 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 18 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
| 20 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 19 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
| 21 #include "third_party/WebKit/public/platform/WebVector.h" | 20 #include "third_party/WebKit/public/platform/WebVector.h" |
| 22 #include "third_party/WebKit/public/web/WebPlugin.h" | 21 #include "third_party/WebKit/public/web/WebPlugin.h" |
| 23 #include "ui/gfx/native_widget_types.h" | 22 #include "ui/gfx/native_widget_types.h" |
| 23 #include "url/gurl.h" |
| 24 #include "webkit/plugins/npapi/webplugin.h" | 24 #include "webkit/plugins/npapi/webplugin.h" |
| 25 #include "webkit/plugins/webkit_plugins_export.h" | 25 #include "webkit/plugins/webkit_plugins_export.h" |
| 26 | 26 |
| 27 namespace cc { | 27 namespace cc { |
| 28 class IOSurfaceLayer; | 28 class IOSurfaceLayer; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace WebKit { | 31 namespace WebKit { |
| 32 class WebFrame; | 32 class WebFrame; |
| 33 class WebLayer; | 33 class WebLayer; |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 333 |
| 334 base::WeakPtrFactory<WebPluginImpl> weak_factory_; | 334 base::WeakPtrFactory<WebPluginImpl> weak_factory_; |
| 335 | 335 |
| 336 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); | 336 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); |
| 337 }; | 337 }; |
| 338 | 338 |
| 339 } // namespace npapi | 339 } // namespace npapi |
| 340 } // namespace webkit | 340 } // namespace webkit |
| 341 | 341 |
| 342 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_IMPL_H_ | 342 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_IMPL_H_ |
| OLD | NEW |