Index: content/browser/web_contents/touch_editable_impl_aura.cc |
diff --git a/content/browser/web_contents/touch_editable_impl_aura.cc b/content/browser/web_contents/touch_editable_impl_aura.cc |
index d38f5f5c7f6317311de3d9bcd43f960bb6f0e1c4..ada5976aa7b9f5728c064a07afe20412a8e9ee36 100644 |
--- a/content/browser/web_contents/touch_editable_impl_aura.cc |
+++ b/content/browser/web_contents/touch_editable_impl_aura.cc |
@@ -14,8 +14,8 @@ |
#include "ui/aura/root_window.h" |
#include "ui/aura/window.h" |
#include "ui/base/clipboard/clipboard.h" |
-#include "ui/base/range/range.h" |
#include "ui/base/ui_base_switches_util.h" |
+#include "ui/gfx/range/range.h" |
namespace content { |
@@ -295,7 +295,7 @@ bool TouchEditableImplAura::IsCommandIdEnabled(int command_id) const { |
if (!rwhva_) |
return false; |
bool editable = rwhva_->GetTextInputType() != ui::TEXT_INPUT_TYPE_NONE; |
- ui::Range selection_range; |
+ gfx::Range selection_range; |
rwhva_->GetSelectionRange(&selection_range); |
bool has_selection = !selection_range.is_empty(); |
switch (command_id) { |