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 #include "webkit/glue/plugins/webplugin_delegate_impl.h" | 5 #include "webkit/glue/plugins/webplugin_delegate_impl.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/iat_patch.h" | 11 #include "base/iat_patch.h" |
12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
14 #include "base/registry.h" | 14 #include "base/registry.h" |
15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
16 #include "base/stats_counters.h" | 16 #include "base/stats_counters.h" |
17 #include "base/string_util.h" | 17 #include "base/string_util.h" |
18 #include "base/win_util.h" | 18 #include "base/win_util.h" |
19 #include "skia/ext/platform_canvas.h" | 19 #include "skia/ext/platform_canvas.h" |
20 #include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" | 20 #include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" |
21 #include "webkit/default_plugin/plugin_impl.h" | |
22 #include "webkit/glue/plugins/plugin_constants_win.h" | 21 #include "webkit/glue/plugins/plugin_constants_win.h" |
23 #include "webkit/glue/plugins/plugin_instance.h" | 22 #include "webkit/glue/plugins/plugin_instance.h" |
24 #include "webkit/glue/plugins/plugin_lib.h" | 23 #include "webkit/glue/plugins/plugin_lib.h" |
25 #include "webkit/glue/plugins/plugin_list.h" | 24 #include "webkit/glue/plugins/plugin_list.h" |
26 #include "webkit/glue/plugins/plugin_stream_url.h" | 25 #include "webkit/glue/plugins/plugin_stream_url.h" |
27 #include "webkit/glue/plugins/webplugin.h" | 26 #include "webkit/glue/plugins/webplugin.h" |
28 #include "webkit/glue/webkit_glue.h" | 27 #include "webkit/glue/webkit_glue.h" |
29 | 28 |
30 using WebKit::WebCursorInfo; | 29 using WebKit::WebCursorInfo; |
31 using WebKit::WebKeyboardEvent; | 30 using WebKit::WebKeyboardEvent; |
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1387 case WM_LBUTTONUP: | 1386 case WM_LBUTTONUP: |
1388 case WM_MBUTTONUP: | 1387 case WM_MBUTTONUP: |
1389 case WM_RBUTTONUP: | 1388 case WM_RBUTTONUP: |
1390 ::ReleaseCapture(); | 1389 ::ReleaseCapture(); |
1391 break; | 1390 break; |
1392 | 1391 |
1393 default: | 1392 default: |
1394 break; | 1393 break; |
1395 } | 1394 } |
1396 } | 1395 } |
OLD | NEW |