| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/renderer_host/render_widget_host.h" | 5 #include "content/browser/renderer_host/render_widget_host.h" |
| 6 | 6 |
| 7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| 11 #include "chrome/browser/accessibility/browser_accessibility_state.h" | 11 #include "chrome/browser/accessibility/browser_accessibility_state.h" |
| 12 #include "chrome/browser/metrics/user_metrics.h" | 12 #include "chrome/browser/metrics/user_metrics.h" |
| 13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "chrome/common/native_web_keyboard_event.h" | |
| 15 #include "chrome/common/render_messages.h" | 14 #include "chrome/common/render_messages.h" |
| 16 #include "chrome/common/render_messages_params.h" | 15 #include "chrome/common/render_messages_params.h" |
| 17 #include "chrome/common/result_codes.h" | |
| 18 #include "content/browser/renderer_host/backing_store.h" | 16 #include "content/browser/renderer_host/backing_store.h" |
| 19 #include "content/browser/renderer_host/backing_store_manager.h" | 17 #include "content/browser/renderer_host/backing_store_manager.h" |
| 20 #include "content/browser/renderer_host/render_process_host.h" | 18 #include "content/browser/renderer_host/render_process_host.h" |
| 21 #include "content/browser/renderer_host/render_widget_helper.h" | 19 #include "content/browser/renderer_host/render_widget_helper.h" |
| 22 #include "content/browser/renderer_host/render_widget_host_view.h" | 20 #include "content/browser/renderer_host/render_widget_host_view.h" |
| 21 #include "content/common/native_web_keyboard_event.h" |
| 23 #include "content/common/notification_service.h" | 22 #include "content/common/notification_service.h" |
| 23 #include "content/common/result_codes.h" |
| 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
| 25 #include "ui/base/keycodes/keyboard_codes.h" | 25 #include "ui/base/keycodes/keyboard_codes.h" |
| 26 #include "webkit/glue/webcursor.h" | 26 #include "webkit/glue/webcursor.h" |
| 27 #include "webkit/plugins/npapi/webplugin.h" | 27 #include "webkit/plugins/npapi/webplugin.h" |
| 28 | 28 |
| 29 #if defined(TOOLKIT_VIEWS) | 29 #if defined(TOOLKIT_VIEWS) |
| 30 #include "views/view.h" | 30 #include "views/view.h" |
| 31 #endif | 31 #endif |
| 32 | 32 |
| 33 #if defined (OS_MACOSX) | 33 #if defined (OS_MACOSX) |
| (...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1283 #endif | 1283 #endif |
| 1284 } | 1284 } |
| 1285 | 1285 |
| 1286 deferred_plugin_handles_.clear(); | 1286 deferred_plugin_handles_.clear(); |
| 1287 } | 1287 } |
| 1288 | 1288 |
| 1289 void RenderWidgetHost::StartUserGesture() { | 1289 void RenderWidgetHost::StartUserGesture() { |
| 1290 OnUserGesture(); | 1290 OnUserGesture(); |
| 1291 } | 1291 } |
| 1292 | 1292 |
| OLD | NEW |