OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_GLUE_WEBPLUGIN_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ |
6 #define WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ | 6 #define WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "config.h" | 12 #include "config.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/gfx/native_widget_types.h" | 14 #include "base/gfx/native_widget_types.h" |
15 | 15 |
16 MSVC_PUSH_WARNING_LEVEL(0); | 16 MSVC_PUSH_WARNING_LEVEL(0); |
17 #include "ResourceHandle.h" | 17 #include "ResourceHandle.h" |
18 #include "ResourceHandleClient.h" | 18 #include "ResourceHandleClient.h" |
19 #include "ResourceRequest.h" | 19 #include "ResourceRequest.h" |
20 #include "Widget.h" | 20 #include "Widget.h" |
21 MSVC_POP_WARNING(); | 21 MSVC_POP_WARNING(); |
22 | 22 |
23 #include "base/basictypes.h" | 23 #include "base/basictypes.h" |
24 #include "base/scoped_ptr.h" | |
25 #include "webkit/glue/webframe_impl.h" | 24 #include "webkit/glue/webframe_impl.h" |
26 #include "webkit/glue/webplugin.h" | 25 #include "webkit/glue/webplugin.h" |
27 #include "webkit/glue/webplugin_delegate.h" | 26 #include "webkit/glue/webplugin_delegate.h" |
28 | 27 |
29 class WebFrameImpl; | 28 class WebFrameImpl; |
30 class WebPluginDelegate; | 29 class WebPluginDelegate; |
31 class WebPluginImpl; | 30 class WebPluginImpl; |
32 class MultipartResponseDelegate; | 31 class MultipartResponseDelegate; |
33 | 32 |
34 namespace WebCore { | 33 namespace WebCore { |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 // Holds the list of argument names passed to the plugin. | 353 // Holds the list of argument names passed to the plugin. |
355 std::vector<std::string> arg_names_; | 354 std::vector<std::string> arg_names_; |
356 | 355 |
357 // Holds the list of argument values passed to the plugin. | 356 // Holds the list of argument values passed to the plugin. |
358 std::vector<std::string> arg_values_; | 357 std::vector<std::string> arg_values_; |
359 | 358 |
360 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); | 359 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); |
361 }; | 360 }; |
362 | 361 |
363 #endif // #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ | 362 #endif // #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ |
OLD | NEW |