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_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ |
6 #define WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ | 6 #define WEBKIT_GLUE_PLUGIN_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> |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 PLUGIN_QUIRK_THROTTLE_WM_USER_PLUS_ONE = 2, // Win32 | 61 PLUGIN_QUIRK_THROTTLE_WM_USER_PLUS_ONE = 2, // Win32 |
62 PLUGIN_QUIRK_DONT_CALL_WND_PROC_RECURSIVELY = 4, // Win32 | 62 PLUGIN_QUIRK_DONT_CALL_WND_PROC_RECURSIVELY = 4, // Win32 |
63 PLUGIN_QUIRK_DONT_SET_NULL_WINDOW_HANDLE_ON_DESTROY = 8, // Win32 | 63 PLUGIN_QUIRK_DONT_SET_NULL_WINDOW_HANDLE_ON_DESTROY = 8, // Win32 |
64 PLUGIN_QUIRK_DONT_ALLOW_MULTIPLE_INSTANCES = 16, // Win32 | 64 PLUGIN_QUIRK_DONT_ALLOW_MULTIPLE_INSTANCES = 16, // Win32 |
65 PLUGIN_QUIRK_DIE_AFTER_UNLOAD = 32, // Win32 | 65 PLUGIN_QUIRK_DIE_AFTER_UNLOAD = 32, // Win32 |
66 PLUGIN_QUIRK_PATCH_SETCURSOR = 64, // Win32 | 66 PLUGIN_QUIRK_PATCH_SETCURSOR = 64, // Win32 |
67 PLUGIN_QUIRK_BLOCK_NONSTANDARD_GETURL_REQUESTS = 128, // Win32 | 67 PLUGIN_QUIRK_BLOCK_NONSTANDARD_GETURL_REQUESTS = 128, // Win32 |
68 PLUGIN_QUIRK_WINDOWLESS_OFFSET_WINDOW_TO_DRAW = 256, // Linux | 68 PLUGIN_QUIRK_WINDOWLESS_OFFSET_WINDOW_TO_DRAW = 256, // Linux |
69 PLUGIN_QUIRK_WINDOWLESS_INVALIDATE_AFTER_SET_WINDOW = 512, // Linux | 69 PLUGIN_QUIRK_WINDOWLESS_INVALIDATE_AFTER_SET_WINDOW = 512, // Linux |
70 PLUGIN_QUIRK_NO_WINDOWLESS = 1024, // Windows | 70 PLUGIN_QUIRK_NO_WINDOWLESS = 1024, // Windows |
71 PLUGIN_QUIRK_PATCH_REGENUMKEYEXW = 2048, // Windows | 71 PLUGIN_QUIRK_PATCH_REGENUMKEYEXW = 2048, // Windows |
72 PLUGIN_QUIRK_ALWAYS_NOTIFY_SUCCESS = 4096, // Windows | 72 PLUGIN_QUIRK_ALWAYS_NOTIFY_SUCCESS = 4096, // Windows |
73 PLUGIN_QUIRK_ALLOW_FASTER_QUICKDRAW_PATH = 8192, // Mac | 73 PLUGIN_QUIRK_ALLOW_FASTER_QUICKDRAW_PATH = 8192, // Mac |
74 PLUGIN_QUIRK_HANDLE_MOUSE_CAPTURE = 16384, // Windows | 74 PLUGIN_QUIRK_HANDLE_MOUSE_CAPTURE = 16384, // Windows |
75 PLUGIN_QUIRK_WINDOWLESS_NO_RIGHT_CLICK = 32768, // Linux | 75 PLUGIN_QUIRK_WINDOWLESS_NO_RIGHT_CLICK = 32768, // Linux |
| 76 PLUGIN_QUIRK_IGNORE_FIRST_SETWINDOW_CALL = 65536, // Windows. |
76 }; | 77 }; |
77 | 78 |
78 static WebPluginDelegateImpl* Create(const FilePath& filename, | 79 static WebPluginDelegateImpl* Create(const FilePath& filename, |
79 const std::string& mime_type, | 80 const std::string& mime_type, |
80 gfx::PluginWindowHandle containing_view); | 81 gfx::PluginWindowHandle containing_view); |
81 | 82 |
82 static bool IsPluginDelegateWindow(gfx::NativeWindow window); | 83 static bool IsPluginDelegateWindow(gfx::NativeWindow window); |
83 static bool GetPluginNameFromWindow(gfx::NativeWindow window, | 84 static bool GetPluginNameFromWindow(gfx::NativeWindow window, |
84 std::wstring *plugin_name); | 85 std::wstring *plugin_name); |
85 | 86 |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 // flash. | 473 // flash. |
473 HHOOK mouse_hook_; | 474 HHOOK mouse_hook_; |
474 #endif | 475 #endif |
475 | 476 |
476 // Holds the depth of the HandleEvent callstack. | 477 // Holds the depth of the HandleEvent callstack. |
477 int handle_event_depth_; | 478 int handle_event_depth_; |
478 | 479 |
479 // Holds the current cursor set by the windowless plugin. | 480 // Holds the current cursor set by the windowless plugin. |
480 WebCursor current_windowless_cursor_; | 481 WebCursor current_windowless_cursor_; |
481 | 482 |
| 483 // Set to true initially and indicates if this is the first npp_setwindow |
| 484 // call received by the plugin. |
| 485 bool first_set_window_call_; |
| 486 |
482 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); | 487 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); |
483 }; | 488 }; |
484 | 489 |
485 #endif // WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ | 490 #endif // WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |