| 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 #include "content/child/npapi/webplugin_delegate_impl.h" | 5 #include "content/child/npapi/webplugin_delegate_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "base/version.h" | 21 #include "base/version.h" |
| 22 #include "base/win/iat_patch_function.h" | 22 #include "base/win/iat_patch_function.h" |
| 23 #include "base/win/registry.h" | 23 #include "base/win/registry.h" |
| 24 #include "base/win/windows_version.h" | 24 #include "base/win/windows_version.h" |
| 25 #include "content/child/npapi/plugin_instance.h" | 25 #include "content/child/npapi/plugin_instance.h" |
| 26 #include "content/child/npapi/plugin_lib.h" | 26 #include "content/child/npapi/plugin_lib.h" |
| 27 #include "content/child/npapi/plugin_stream_url.h" | 27 #include "content/child/npapi/plugin_stream_url.h" |
| 28 #include "content/child/npapi/webplugin.h" | 28 #include "content/child/npapi/webplugin.h" |
| 29 #include "content/child/npapi/webplugin_ime_win.h" | 29 #include "content/child/npapi/webplugin_ime_win.h" |
| 30 #include "content/common/plugin_constants_win.h" | 30 #include "content/common/plugin_constants_win.h" |
| 31 #include "content/public/common/content_constants.h" |
| 31 #include "skia/ext/platform_canvas.h" | 32 #include "skia/ext/platform_canvas.h" |
| 32 #include "third_party/WebKit/public/web/WebInputEvent.h" | 33 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 33 #include "ui/base/win/dpi.h" | 34 #include "ui/base/win/dpi.h" |
| 34 #include "ui/base/win/hwnd_util.h" | 35 #include "ui/base/win/hwnd_util.h" |
| 35 #include "webkit/common/cursors/webcursor.h" | 36 #include "webkit/common/cursors/webcursor.h" |
| 36 #include "webkit/plugins/plugin_constants.h" | |
| 37 | 37 |
| 38 using WebKit::WebKeyboardEvent; | 38 using WebKit::WebKeyboardEvent; |
| 39 using WebKit::WebInputEvent; | 39 using WebKit::WebInputEvent; |
| 40 using WebKit::WebMouseEvent; | 40 using WebKit::WebMouseEvent; |
| 41 | 41 |
| 42 namespace content { | 42 namespace content { |
| 43 | 43 |
| 44 namespace { | 44 namespace { |
| 45 | 45 |
| 46 const wchar_t kWebPluginDelegateProperty[] = L"WebPluginDelegateProperty"; | 46 const wchar_t kWebPluginDelegateProperty[] = L"WebPluginDelegateProperty"; |
| (...skipping 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1480 case WM_RBUTTONUP: | 1480 case WM_RBUTTONUP: |
| 1481 ::ReleaseCapture(); | 1481 ::ReleaseCapture(); |
| 1482 break; | 1482 break; |
| 1483 | 1483 |
| 1484 default: | 1484 default: |
| 1485 break; | 1485 break; |
| 1486 } | 1486 } |
| 1487 } | 1487 } |
| 1488 | 1488 |
| 1489 } // namespace content | 1489 } // namespace content |
| OLD | NEW |