| 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 <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "config.h" | 11 #include "config.h" |
| 12 #pragma warning(push, 0) | 12 #pragma warning(push, 0) |
| 13 #include "ResourceHandle.h" |
| 13 #include "ResourceHandleClient.h" | 14 #include "ResourceHandleClient.h" |
| 14 #include "ResourceRequest.h" | 15 #include "ResourceRequest.h" |
| 15 #include "Widget.h" | 16 #include "Widget.h" |
| 16 #pragma warning(pop) | 17 #pragma warning(pop) |
| 17 | 18 |
| 18 #include "base/basictypes.h" | 19 #include "base/basictypes.h" |
| 19 #include "base/scoped_ptr.h" | 20 #include "base/scoped_ptr.h" |
| 20 #include "webkit/glue/webframe_impl.h" | 21 #include "webkit/glue/webframe_impl.h" |
| 21 #include "webkit/glue/webplugin.h" | 22 #include "webkit/glue/webplugin.h" |
| 22 #include "webkit/glue/webplugin_delegate.h" | 23 #include "webkit/glue/webplugin_delegate.h" |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // Set when we receive the first paint notification for the plugin widget. | 251 // Set when we receive the first paint notification for the plugin widget. |
| 251 bool received_first_paint_notification_; | 252 bool received_first_paint_notification_; |
| 252 | 253 |
| 253 WebPluginContainer* widget_; | 254 WebPluginContainer* widget_; |
| 254 | 255 |
| 255 DISALLOW_EVIL_CONSTRUCTORS(WebPluginImpl); | 256 DISALLOW_EVIL_CONSTRUCTORS(WebPluginImpl); |
| 256 }; | 257 }; |
| 257 | 258 |
| 258 #endif // #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H__ | 259 #endif // #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H__ |
| 259 | 260 |
| OLD | NEW |