| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "ui/views/views_delegate.h" | 5 #include "ui/views/views_delegate.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "ui/views/layout/layout_constants.h" | |
| 10 #include "ui/views/views_touch_selection_controller_factory.h" | 9 #include "ui/views/views_touch_selection_controller_factory.h" |
| 11 #include "ui/views/widget/native_widget_private.h" | 10 #include "ui/views/widget/native_widget_private.h" |
| 12 | 11 |
| 13 #if defined(USE_AURA) | 12 #if defined(USE_AURA) |
| 14 #include "ui/views/touchui/touch_selection_menu_runner_views.h" | 13 #include "ui/views/touchui/touch_selection_menu_runner_views.h" |
| 15 #endif | 14 #endif |
| 16 | 15 |
| 17 namespace views { | 16 namespace views { |
| 18 namespace { | 17 namespace { |
| 19 | 18 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 const base::Closure& callback) { | 133 const base::Closure& callback) { |
| 135 return EDGE_BOTTOM; | 134 return EDGE_BOTTOM; |
| 136 } | 135 } |
| 137 #endif | 136 #endif |
| 138 | 137 |
| 139 scoped_refptr<base::TaskRunner> ViewsDelegate::GetBlockingPoolTaskRunner() { | 138 scoped_refptr<base::TaskRunner> ViewsDelegate::GetBlockingPoolTaskRunner() { |
| 140 return nullptr; | 139 return nullptr; |
| 141 } | 140 } |
| 142 | 141 |
| 143 } // namespace views | 142 } // namespace views |
| OLD | NEW |