| 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 "content/browser/renderer_host/tap_suppression_controller.h" | 5 #include "content/browser/renderer_host/tap_suppression_controller.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 break; | 163 break; |
| 164 case MD_STASHED: | 164 case MD_STASHED: |
| 165 TRACE_EVENT0("browser", | 165 TRACE_EVENT0("browser", |
| 166 "TapSuppressionController::MouseDownTimerExpired"); | 166 "TapSuppressionController::MouseDownTimerExpired"); |
| 167 render_widget_host_->ForwardMouseEvent(stashed_mouse_down_); | 167 render_widget_host_->ForwardMouseEvent(stashed_mouse_down_); |
| 168 state_ = NOTHING; | 168 state_ = NOTHING; |
| 169 break; | 169 break; |
| 170 } | 170 } |
| 171 } | 171 } |
| 172 | 172 |
| 173 } // namespace content. | 173 } // namespace content |
| OLD | NEW |