| 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 #include "webkit/glue/plugins/webplugin_delegate_impl.h" | 5 #include "webkit/glue/plugins/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 |
| 11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
| 12 #include "base/iat_patch.h" | 12 #include "base/iat_patch.h" |
| 13 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
| 14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
| 15 #include "base/registry.h" | 15 #include "base/registry.h" |
| 16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 17 #include "base/stats_counters.h" | 17 #include "base/stats_counters.h" |
| 18 #include "base/string_number_conversions.h" | 18 #include "base/string_number_conversions.h" |
| 19 #include "base/string_split.h" |
| 19 #include "base/string_util.h" | 20 #include "base/string_util.h" |
| 20 #include "base/win_util.h" | 21 #include "base/win_util.h" |
| 21 #include "skia/ext/platform_canvas.h" | 22 #include "skia/ext/platform_canvas.h" |
| 22 #include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" | 23 #include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" |
| 23 #include "webkit/glue/plugins/default_plugin_shared.h" | 24 #include "webkit/glue/plugins/default_plugin_shared.h" |
| 24 #include "webkit/glue/plugins/plugin_constants_win.h" | 25 #include "webkit/glue/plugins/plugin_constants_win.h" |
| 25 #include "webkit/glue/plugins/plugin_instance.h" | 26 #include "webkit/glue/plugins/plugin_instance.h" |
| 26 #include "webkit/glue/plugins/plugin_lib.h" | 27 #include "webkit/glue/plugins/plugin_lib.h" |
| 27 #include "webkit/glue/plugins/plugin_list.h" | 28 #include "webkit/glue/plugins/plugin_list.h" |
| 28 #include "webkit/glue/plugins/plugin_stream_url.h" | 29 #include "webkit/glue/plugins/plugin_stream_url.h" |
| (...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 case WM_LBUTTONUP: | 1396 case WM_LBUTTONUP: |
| 1396 case WM_MBUTTONUP: | 1397 case WM_MBUTTONUP: |
| 1397 case WM_RBUTTONUP: | 1398 case WM_RBUTTONUP: |
| 1398 ::ReleaseCapture(); | 1399 ::ReleaseCapture(); |
| 1399 break; | 1400 break; |
| 1400 | 1401 |
| 1401 default: | 1402 default: |
| 1402 break; | 1403 break; |
| 1403 } | 1404 } |
| 1404 } | 1405 } |
| OLD | NEW |