| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_PLUGINS_WEBPLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_PLUGINS_WEBPLUGIN_DELEGATE_IMPL_H_ |
| 6 #define WEBKIT_GLUE_PLUGINS_WEBPLUGIN_DELEGATE_IMPL_H_ | 6 #define WEBKIT_GLUE_PLUGINS_WEBPLUGIN_DELEGATE_IMPL_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <list> | 11 #include <list> |
| 12 #include <set> | |
| 13 | 12 |
| 14 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
| 15 #include "base/task.h" | 14 #include "base/task.h" |
| 16 #include "base/time.h" | 15 #include "base/time.h" |
| 17 #include "base/timer.h" | 16 #include "base/timer.h" |
| 18 #include "gfx/native_widget_types.h" | 17 #include "gfx/native_widget_types.h" |
| 19 #include "gfx/rect.h" | 18 #include "gfx/rect.h" |
| 20 #include "third_party/npapi/bindings/npapi.h" | 19 #include "third_party/npapi/bindings/npapi.h" |
| 21 #include "webkit/glue/plugins/webplugin_delegate.h" | 20 #include "webkit/glue/plugins/webplugin_delegate.h" |
| 22 #include "webkit/glue/webcursor.h" | 21 #include "webkit/glue/webcursor.h" |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 WebCursor current_windowless_cursor_; | 492 WebCursor current_windowless_cursor_; |
| 494 | 493 |
| 495 // Set to true initially and indicates if this is the first npp_setwindow | 494 // Set to true initially and indicates if this is the first npp_setwindow |
| 496 // call received by the plugin. | 495 // call received by the plugin. |
| 497 bool first_set_window_call_; | 496 bool first_set_window_call_; |
| 498 | 497 |
| 499 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); | 498 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); |
| 500 }; | 499 }; |
| 501 | 500 |
| 502 #endif // WEBKIT_GLUE_PLUGINS_WEBPLUGIN_DELEGATE_IMPL_H_ | 501 #endif // WEBKIT_GLUE_PLUGINS_WEBPLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |