| 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 "webkit/plugins/npapi/webplugin_delegate_impl.h" | 5 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "base/win/registry.h" | 22 #include "base/win/registry.h" |
| 23 #include "base/win/windows_version.h" | 23 #include "base/win/windows_version.h" |
| 24 #include "skia/ext/platform_canvas.h" | 24 #include "skia/ext/platform_canvas.h" |
| 25 #include "third_party/WebKit/public/web/WebInputEvent.h" | 25 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 26 #include "ui/base/win/dpi.h" | 26 #include "ui/base/win/dpi.h" |
| 27 #include "ui/base/win/hwnd_util.h" | 27 #include "ui/base/win/hwnd_util.h" |
| 28 #include "webkit/common/cursors/webcursor.h" | 28 #include "webkit/common/cursors/webcursor.h" |
| 29 #include "webkit/plugins/npapi/plugin_constants_win.h" | 29 #include "webkit/plugins/npapi/plugin_constants_win.h" |
| 30 #include "webkit/plugins/npapi/plugin_instance.h" | 30 #include "webkit/plugins/npapi/plugin_instance.h" |
| 31 #include "webkit/plugins/npapi/plugin_lib.h" | 31 #include "webkit/plugins/npapi/plugin_lib.h" |
| 32 #include "webkit/plugins/npapi/plugin_list.h" | |
| 33 #include "webkit/plugins/npapi/plugin_stream_url.h" | 32 #include "webkit/plugins/npapi/plugin_stream_url.h" |
| 34 #include "webkit/plugins/npapi/plugin_utils.h" | 33 #include "webkit/plugins/npapi/plugin_utils.h" |
| 35 #include "webkit/plugins/npapi/webplugin.h" | 34 #include "webkit/plugins/npapi/webplugin.h" |
| 36 #include "webkit/plugins/npapi/webplugin_ime_win.h" | 35 #include "webkit/plugins/npapi/webplugin_ime_win.h" |
| 37 #include "webkit/plugins/plugin_constants.h" | 36 #include "webkit/plugins/plugin_constants.h" |
| 38 | 37 |
| 39 using WebKit::WebKeyboardEvent; | 38 using WebKit::WebKeyboardEvent; |
| 40 using WebKit::WebInputEvent; | 39 using WebKit::WebInputEvent; |
| 41 using WebKit::WebMouseEvent; | 40 using WebKit::WebMouseEvent; |
| 42 | 41 |
| (...skipping 1498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1541 ::ReleaseCapture(); | 1540 ::ReleaseCapture(); |
| 1542 break; | 1541 break; |
| 1543 | 1542 |
| 1544 default: | 1543 default: |
| 1545 break; | 1544 break; |
| 1546 } | 1545 } |
| 1547 } | 1546 } |
| 1548 | 1547 |
| 1549 } // namespace npapi | 1548 } // namespace npapi |
| 1550 } // namespace webkit | 1549 } // namespace webkit |
| OLD | NEW |