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 "base/bind_helpers.h" | 5 #include "base/bind_helpers.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "content/browser/browser_plugin/browser_plugin_guest.h" | 9 #include "content/browser/browser_plugin/browser_plugin_guest.h" |
10 #include "content/browser/renderer_host/render_view_host_impl.h" | 10 #include "content/browser/renderer_host/render_view_host_impl.h" |
11 #include "content/browser/renderer_host/render_widget_host_view_guest.h" | 11 #include "content/browser/renderer_host/render_widget_host_view_guest.h" |
12 #include "content/common/browser_plugin/browser_plugin_messages.h" | 12 #include "content/common/browser_plugin/browser_plugin_messages.h" |
13 #include "content/common/gpu/gpu_messages.h" | 13 #include "content/common/gpu/gpu_messages.h" |
14 #include "content/common/view_messages.h" | 14 #include "content/common/view_messages.h" |
15 #include "content/public/common/content_switches.h" | 15 #include "content/public/common/content_switches.h" |
16 #include "skia/ext/platform_canvas.h" | 16 #include "skia/ext/platform_canvas.h" |
17 #include "third_party/WebKit/public/web/WebScreenInfo.h" | 17 #include "third_party/WebKit/public/web/WebScreenInfo.h" |
18 #include "webkit/plugins/npapi/webplugin.h" | 18 #include "webkit/plugins/npapi/webplugin.h" |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 return; | 564 return; |
565 for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin(); | 565 for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin(); |
566 g_it != gestures->end(); | 566 g_it != gestures->end(); |
567 ++g_it) { | 567 ++g_it) { |
568 ForwardGestureEventToRenderer(*g_it); | 568 ForwardGestureEventToRenderer(*g_it); |
569 } | 569 } |
570 } | 570 } |
571 | 571 |
572 | 572 |
573 } // namespace content | 573 } // namespace content |
OLD | NEW |