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

Issue 8527015: Fix omnibox mouse click highlight/word select/focus issue in aura build. (Closed)

Created:
9 years, 1 month ago by jennyz
Modified:
9 years, 1 month ago
CC:
chromium-reviews, tfarina, James Su, dhollowa
Visibility:
Public.

Description

Fix omnibox mouse click highlight/word select/focus issue in aura build. BUG=101774 TEST=NONE Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=110202

Patch Set 1 #

Total comments: 9

Patch Set 2 : Address the code review comments. #

Total comments: 9

Patch Set 3 : Fix the typo and comments from code review feedback. #

Total comments: 2

Patch Set 4 : Minor change in comments. #

Total comments: 4

Patch Set 5 : Fix minor coding style issue. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+77 lines, -38 lines) Patch
M chrome/browser/ui/views/omnibox/omnibox_view_views.h View 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_views.cc View 1 3 chunks +15 lines, -0 lines 0 comments Download
M views/controls/textfield/native_textfield_views.h View 1 2 1 chunk +6 lines, -0 lines 0 comments Download
M views/controls/textfield/native_textfield_views.cc View 1 2 3 4 2 chunks +53 lines, -38 lines 0 comments Download

Messages

Total messages: 16 (0 generated)
jennyz
Please ignore the dirty code in metrics_aura.cc and view_aura.cc. The cl for this change has ...
9 years, 1 month ago (2011-11-11 01:13:48 UTC) #1
msw
Awesome, this looks pretty good. http://codereview.chromium.org/8527015/diff/1/chrome/browser/ui/views/omnibox/omnibox_view_views.cc File chrome/browser/ui/views/omnibox/omnibox_view_views.cc (right): http://codereview.chromium.org/8527015/diff/1/chrome/browser/ui/views/omnibox/omnibox_view_views.cc#newcode275 chrome/browser/ui/views/omnibox/omnibox_view_views.cc:275: if (event.IsOnlyLeftMouseButton() && !textfield_->HasFocus() ...
9 years, 1 month ago (2011-11-11 01:28:57 UTC) #2
oshima
http://codereview.chromium.org/8527015/diff/1/views/controls/textfield/native_textfield_views.cc File views/controls/textfield/native_textfield_views.cc (right): http://codereview.chromium.org/8527015/diff/1/views/controls/textfield/native_textfield_views.cc#newcode99 views/controls/textfield/native_textfield_views.cc:99: } This should be after OnBeforeUserAction() and has to ...
9 years, 1 month ago (2011-11-11 01:52:32 UTC) #3
jennyz
I removed the change in view_aura.cc and metrics_aura.cc since it is in cl: http://codereview.chromium.org/8524008/ I ...
9 years, 1 month ago (2011-11-12 01:50:17 UTC) #4
msw
http://codereview.chromium.org/8527015/diff/5001/views/controls/textfield/native_textfield_views.cc File views/controls/textfield/native_textfield_views.cc (right): http://codereview.chromium.org/8527015/diff/5001/views/controls/textfield/native_textfield_views.cc#newcode1058 views/controls/textfield/native_textfield_views.cc:1058: #if defined(TOUCH_UI) Please add a comment here, something like ...
9 years, 1 month ago (2011-11-12 02:19:21 UTC) #5
jennyz
http://codereview.chromium.org/8527015/diff/5001/views/controls/textfield/native_textfield_views.cc File views/controls/textfield/native_textfield_views.cc (right): http://codereview.chromium.org/8527015/diff/5001/views/controls/textfield/native_textfield_views.cc#newcode1058 views/controls/textfield/native_textfield_views.cc:1058: #if defined(TOUCH_UI) On 2011/11/12 02:19:21, msw wrote: > Please ...
9 years, 1 month ago (2011-11-14 18:28:57 UTC) #6
msw
LGTM with a nit. http://codereview.chromium.org/8527015/diff/4002/views/controls/textfield/native_textfield_views.cc File views/controls/textfield/native_textfield_views.cc (right): http://codereview.chromium.org/8527015/diff/4002/views/controls/textfield/native_textfield_views.cc#newcode1058 views/controls/textfield/native_textfield_views.cc:1058: // Temporarily disable drag and ...
9 years, 1 month ago (2011-11-14 19:00:33 UTC) #7
jennyz
http://codereview.chromium.org/8527015/diff/4002/views/controls/textfield/native_textfield_views.cc File views/controls/textfield/native_textfield_views.cc (right): http://codereview.chromium.org/8527015/diff/4002/views/controls/textfield/native_textfield_views.cc#newcode1058 views/controls/textfield/native_textfield_views.cc:1058: // Temporarily disable drag and drop on touch builds; ...
9 years, 1 month ago (2011-11-14 19:09:51 UTC) #8
oshima
LGTM http://codereview.chromium.org/8527015/diff/13001/chrome/browser/ui/views/omnibox/omnibox_view_views.cc File chrome/browser/ui/views/omnibox/omnibox_view_views.cc (right): http://codereview.chromium.org/8527015/diff/13001/chrome/browser/ui/views/omnibox/omnibox_view_views.cc#newcode275 chrome/browser/ui/views/omnibox/omnibox_view_views.cc:275: if (!textfield_->HasFocus() && !textfield_->HasSelection()) { We may need ...
9 years, 1 month ago (2011-11-14 19:31:09 UTC) #9
jennyz
http://codereview.chromium.org/8527015/diff/13001/chrome/browser/ui/views/omnibox/omnibox_view_views.cc File chrome/browser/ui/views/omnibox/omnibox_view_views.cc (right): http://codereview.chromium.org/8527015/diff/13001/chrome/browser/ui/views/omnibox/omnibox_view_views.cc#newcode275 chrome/browser/ui/views/omnibox/omnibox_view_views.cc:275: if (!textfield_->HasFocus() && !textfield_->HasSelection()) { On 2011/11/14 19:31:09, oshima ...
9 years, 1 month ago (2011-11-14 19:50:09 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jennyz@chromium.org/8527015/1012
9 years, 1 month ago (2011-11-15 19:13:49 UTC) #11
commit-bot: I haz the power
Presubmit check for 8527015-1012 failed and returned exit status 1. Running presubmit commit checks ...
9 years, 1 month ago (2011-11-15 19:13:53 UTC) #12
jennyz
msw and oshima have reviewed the cl, ben, would you please take a look? I ...
9 years, 1 month ago (2011-11-15 19:19:15 UTC) #13
Ben Goodger (Google)
LGTM, but this is the kind of thing we're going to wish we had unit ...
9 years, 1 month ago (2011-11-15 21:24:37 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jennyz@chromium.org/8527015/1012
9 years, 1 month ago (2011-11-15 22:12:12 UTC) #15
commit-bot: I haz the power
9 years, 1 month ago (2011-11-15 23:12:21 UTC) #16
Change committed as 110202

Powered by Google App Engine
This is Rietveld 408576698