| 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 "views/touchui/touch_selection_controller_impl.h" | 5 #include "ui/views/touchui/touch_selection_controller_impl.h" |
| 6 | 6 |
| 7 #include "base/time.h" | 7 #include "base/time.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "grit/ui_strings.h" | 9 #include "grit/ui_strings.h" |
| 10 #include "third_party/skia/include/effects/SkGradientShader.h" | 10 #include "third_party/skia/include/effects/SkGradientShader.h" |
| 11 #include "ui/base/l10n/l10n_util.h" | 11 #include "ui/base/l10n/l10n_util.h" |
| 12 #include "ui/base/resource/resource_bundle.h" | 12 #include "ui/base/resource/resource_bundle.h" |
| 13 #include "ui/gfx/canvas.h" | 13 #include "ui/gfx/canvas.h" |
| 14 #include "ui/gfx/canvas_skia.h" | 14 #include "ui/gfx/canvas_skia.h" |
| 15 #include "ui/gfx/path.h" | 15 #include "ui/gfx/path.h" |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 bool TouchSelectionControllerImpl::IsSelectionHandle2Visible() { | 499 bool TouchSelectionControllerImpl::IsSelectionHandle2Visible() { |
| 500 return selection_handle_2_->IsVisible(); | 500 return selection_handle_2_->IsVisible(); |
| 501 } | 501 } |
| 502 | 502 |
| 503 TouchSelectionController* TouchSelectionController::create( | 503 TouchSelectionController* TouchSelectionController::create( |
| 504 TouchSelectionClientView* client_view) { | 504 TouchSelectionClientView* client_view) { |
| 505 return new TouchSelectionControllerImpl(client_view); | 505 return new TouchSelectionControllerImpl(client_view); |
| 506 } | 506 } |
| 507 | 507 |
| 508 } // namespace views | 508 } // namespace views |
| OLD | NEW |