Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: content/browser/web_contents/touch_editable_impl_aura.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 6ca8e04fa1e4f0921895576a30b445263d6cbd33..50c89fad1997062838bfee3516110ccf47d75aef 100644
--- a/content/browser/web_contents/touch_editable_impl_aura.cc
+++ b/content/browser/web_contents/touch_editable_impl_aura.cc
@@ -195,7 +195,7 @@ bool TouchEditableImplAura::HandleInputEvent(const ui::Event* event) {
void TouchEditableImplAura::GestureEventAck(int gesture_event_type) {
DCHECK(rwhva_);
- if (gesture_event_type == WebKit::WebInputEvent::GestureTap &&
+ if (gesture_event_type == blink::WebInputEvent::GestureTap &&
text_input_type_ != ui::TEXT_INPUT_TYPE_NONE &&
is_tap_on_focused_textfield_) {
StartTouchEditing();
@@ -203,9 +203,9 @@ void TouchEditableImplAura::GestureEventAck(int gesture_event_type) {
touch_selection_controller_->SelectionChanged();
}
- if (gesture_event_type == WebKit::WebInputEvent::GestureLongPress)
+ if (gesture_event_type == blink::WebInputEvent::GestureLongPress)
selection_gesture_in_process_ = false;
- if (gesture_event_type == WebKit::WebInputEvent::GestureTap) {
+ if (gesture_event_type == blink::WebInputEvent::GestureTap) {
if (tap_gesture_tap_count_queue_.front() > 1)
selection_gesture_in_process_ = false;
tap_gesture_tap_count_queue_.pop();
« no previous file with comments | « content/browser/web_contents/drag_utils_gtk.cc ('k') | content/browser/web_contents/web_contents_drag_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698