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

Issue 6731036: Enabled pressing TAB to cycle through the Omnibox results. (Closed)

Created:
9 years, 9 months ago by aaron.randolph
Modified:
8 years, 10 months ago
CC:
chromium-reviews
Visibility:
Public.

Description

Enabled pressing TAB to traverse through the Omnibox results, removed moving the caret to the end of the line with TAB, and filtered out redundant URLs. This adds the ability to move through Omnibox result matches using TAB in addition to the arrow keys. To enable this, pressing TAB to move the caret to the end of the line was removed and the keyword hint/shortcut logic has been modified. The Omnibox popup now shows keyword markers on the right side of matches that have associated keywords (represented by a right arrow). When this kind of match is selected, and the keyword is accepted, the match changes appearance by animating in the associated keyword match from the right to display the "Search X for <>" message. If multiple matches have the same keyword then only the most relevant match will display the keyword marker and hint. Pressing TAB while a keyword hint is shown will enter keyword mode in place; the results will no longer change when keyword mode is entered. Additionally, substituting keyword provider matches will only be shown if a keyword substitution is available. Finally, results with redundant destination URLs (e.g., "foo.com", "www.foo.com") will have the less relevant URLs filtered out. This also addresses some GTK omnibox browsertest flakiness; see bug 112041. Contributed by aaron.randolph@gmail.com BUG=57748, 76278, 77662, 80934, 84420 TEST=Press TAB to move the selection down the list of results, SHIFT+TAB to move up. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=120005

Patch Set 1 : '' #

Patch Set 2 : Enabled pressing TAB to cycle through the Omnibox results, removed moving the caret to the #

Total comments: 14

Patch Set 3 : '' #

Total comments: 16

Patch Set 4 : '' #

Total comments: 22

Patch Set 5 : '' #

Total comments: 17

Patch Set 6 : '' #

Total comments: 26

Patch Set 7 : '' #

Total comments: 38

Patch Set 8 : '' #

Total comments: 18

Patch Set 9 : '' #

Patch Set 10 : '' #

Total comments: 5

Patch Set 11 : '' #

Total comments: 12

Patch Set 12 : '' #

Patch Set 13 : '' #

Total comments: 22

Patch Set 14 : '' #

Total comments: 13

Patch Set 15 : '' #

Patch Set 16 : '' #

Total comments: 12

Patch Set 17 : '' #

Total comments: 3

Patch Set 18 : '' #

Total comments: 2

Patch Set 19 : '' #

Total comments: 2

Patch Set 20 : '' #

Total comments: 5

Patch Set 21 : '' #

Total comments: 3

Patch Set 22 : '' #

Patch Set 23 : '' #

Total comments: 1

Patch Set 24 : '' #

Patch Set 25 : '' #

Patch Set 26 : '' #

Total comments: 1

Patch Set 27 : '' #

Patch Set 28 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+976 lines, -474 lines) Patch
M AUTHORS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +14 lines, -0 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +49 lines, -5 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_edit.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_edit.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 7 chunks +53 lines, -19 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_edit_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_match.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +37 lines, -0 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_match.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +77 lines, -3 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_popup_model.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +21 lines, -14 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_popup_model.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +26 lines, -59 lines 0 comments Download
D chrome/browser/autocomplete/autocomplete_popup_model_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +0 lines, -118 lines 0 comments Download
M chrome/browser/autocomplete/autocomplete_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 10 chunks +133 lines, -16 lines 0 comments Download
M chrome/browser/autocomplete/history_url_provider_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/autocomplete/keyword_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 4 chunks +22 lines, -9 lines 0 comments Download
M chrome/browser/autocomplete/keyword_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 9 chunks +110 lines, -60 lines 0 comments Download
M chrome/browser/autocomplete/keyword_provider_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +10 lines, -0 lines 0 comments Download
M chrome/browser/autocomplete/search_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -3 lines 0 comments Download
M chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +6 lines, -1 line 0 comments Download
M chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 8 chunks +30 lines, -30 lines 0 comments Download
M chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -3 lines 0 comments Download
M chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +8 lines, -1 line 0 comments Download
M chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +28 lines, -18 lines 0 comments Download
M chrome/browser/ui/omnibox/omnibox_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/ui/omnibox/omnibox_view_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 7 chunks +132 lines, -34 lines 0 comments Download
M chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 8 chunks +28 lines, -19 lines 0 comments Download
M chrome/browser/ui/views/autocomplete/autocomplete_result_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +23 lines, -2 lines 0 comments Download
M chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 7 chunks +98 lines, -17 lines 0 comments Download
M chrome/browser/ui/views/location_bar/location_bar_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +3 lines, -10 lines 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_views.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_views.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +16 lines, -9 lines 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 4 chunks +20 lines, -16 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +0 lines, -1 line 0 comments Download
M chrome/test/base/in_process_browser_test.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/test/base/in_process_browser_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/keycodes/keyboard_code_conversion_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M ui/base/keycodes/keyboard_codes_posix.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 169 (0 generated)
aaron.randolph
9 years, 9 months ago (2011-03-25 03:34:21 UTC) #1
Peter Kasting
I think you should not change the order of keyword results. IMO it is better ...
9 years, 9 months ago (2011-03-25 19:49:30 UTC) #2
aaron.randolph
Actually, my initial implementation tried to do as that bug suggested. As you say, the ...
9 years, 9 months ago (2011-03-25 20:55:40 UTC) #3
Peter Kasting
OK, sky and I came up with what we think is a good solution to ...
9 years, 9 months ago (2011-03-25 21:32:13 UTC) #4
James Su
Looks like this change disables Tab focus traversal in omnibox completely. I don't think it's ...
9 years, 9 months ago (2011-03-25 22:28:03 UTC) #5
Peter Kasting
On 2011/03/25 22:28:03, James Su wrote: > Looks like this change disables Tab focus traversal ...
9 years, 9 months ago (2011-03-25 22:29:23 UTC) #6
James Su
On 2011/03/25 22:29:23, Peter Kasting wrote: > On 2011/03/25 22:28:03, James Su wrote: > > ...
9 years, 9 months ago (2011-03-25 22:42:58 UTC) #7
aaron.randolph
In this version, pressing TAB with a closed popup does the same as the down ...
9 years, 9 months ago (2011-03-25 23:00:45 UTC) #8
aaron.randolph
I've updated the patch set with modifications that are more in line with the suggestions ...
9 years, 9 months ago (2011-03-29 02:37:22 UTC) #9
aaron.randolph
Embarrassingly, I broke my last patch while fixing lint errors in a rush. I've uploaded ...
9 years, 8 months ago (2011-03-30 22:52:57 UTC) #10
Peter Kasting
Some more nitpicky comments below. Here are some higher-level comments: * You also need to ...
9 years, 8 months ago (2011-04-01 00:09:09 UTC) #11
Peter Kasting
Oh, and one more. Doing what I suggest will probably allow us to make changes ...
9 years, 8 months ago (2011-04-01 00:12:22 UTC) #12
aaron.randolph
Thanks, Peter. That all makes sense and I'll get to work on fixing the nits ...
9 years, 8 months ago (2011-04-01 02:05:55 UTC) #13
aaron.randolph
I just uploaded a new CL that fixes most of the nits and updates the ...
9 years, 8 months ago (2011-04-07 04:13:40 UTC) #14
Peter Kasting
I did a very fast review, mostly for style. Two general style comments in addition ...
9 years, 8 months ago (2011-04-07 20:19:21 UTC) #15
aaron.randolph
Uploaded a new patch that corrects style issues and addresses the nits.
9 years, 8 months ago (2011-04-08 01:27:11 UTC) #16
aaron.randolph
Updated that patch to fix lint not finding newlines at the end of a couple ...
9 years, 8 months ago (2011-04-08 12:52:50 UTC) #17
Peter Kasting
I have been jammed up with stuff today but I will try and take a ...
9 years, 8 months ago (2011-04-09 00:52:42 UTC) #18
Peter Kasting
Some nits below, but the larger issue with this patch is that how keyword state ...
9 years, 8 months ago (2011-04-11 23:17:33 UTC) #19
aaron.randolph
Everything you said was correct and I agree it is overly complex. I was initially ...
9 years, 8 months ago (2011-04-12 02:58:50 UTC) #20
Peter Kasting
On 2011/04/12 02:58:50, aaron.randolph wrote: > I also > was trying to be as minimally ...
9 years, 8 months ago (2011-04-12 18:31:24 UTC) #21
aaron.randolph
On that last paragraph I actually meant to say retrieved by value, not passed. I ...
9 years, 8 months ago (2011-04-12 19:18:21 UTC) #22
Peter Kasting
On 2011/04/12 19:18:21, aaron.randolph wrote: > On that last paragraph I actually meant to say ...
9 years, 8 months ago (2011-04-12 19:40:42 UTC) #23
aaron.randolph
I uploaded a new patch that changes the keyword handling to use a state enum ...
9 years, 8 months ago (2011-04-13 03:33:24 UTC) #24
Peter Kasting
On 2011/04/13 03:33:24, aaron.randolph wrote: > One note: it seemed unecessary to have two TemplateURLs ...
9 years, 8 months ago (2011-04-13 03:45:16 UTC) #25
aaron.randolph
> Yes, I had intended |keyword_url| to replace the existing |template_url| field, > not exist ...
9 years, 8 months ago (2011-04-13 11:07:01 UTC) #26
Peter Kasting
I started to do a review (some comments below), but while considering the AutocompleteResultView and ...
9 years, 8 months ago (2011-04-13 21:06:59 UTC) #27
aaron.randolph
No need to apologize. It's been an interesting experience and I always enjoy bouncing ideas ...
9 years, 8 months ago (2011-04-14 00:54:44 UTC) #28
Peter Kasting
On 2011/04/14 00:54:44, aaron.randolph wrote: > > * AutocompleteMatch drops the keyword_state field. Instead it ...
9 years, 8 months ago (2011-04-14 01:08:52 UTC) #29
aaron.randolph
> This isn't a problem, because associated matches would never be kept in the main ...
9 years, 8 months ago (2011-04-14 01:40:27 UTC) #30
Peter Kasting
On 2011/04/14 01:40:27, aaron.randolph wrote: > However, looking at your suggestion again, you say "The ...
9 years, 8 months ago (2011-04-14 01:50:22 UTC) #31
aaron.randolph
Alright, I think we're on the same page now. I'll look at implementing this over ...
9 years, 8 months ago (2011-04-14 02:05:47 UTC) #32
aaron.randolph
Better late than never, I've uploaded a new CL that implements tab cycling based on ...
9 years, 5 months ago (2011-07-24 23:37:19 UTC) #33
aaron.randolph
FYI, I made a slight update to the CL that changed AutocompletePopupContentsView to use a ...
9 years, 5 months ago (2011-07-25 15:08:56 UTC) #34
Peter Kasting
This is looking pretty good. Why doesn't making AutocompleteMatch inherit from RefCounted<> work? http://codereview.chromium.org/6731036/diff/61089/chrome/browser/autocomplete/autocomplete_match.cc File ...
9 years, 5 months ago (2011-07-27 20:18:25 UTC) #35
aaron.randolph
On 2011/07/27 20:18:25, Peter Kasting wrote: > This is looking pretty good. > > Why ...
9 years, 5 months ago (2011-07-28 00:34:42 UTC) #36
aaron.randolph
http://codereview.chromium.org/6731036/diff/61089/chrome/browser/autocomplete/keyword_provider.cc File chrome/browser/autocomplete/keyword_provider.cc (left): http://codereview.chromium.org/6731036/diff/61089/chrome/browser/autocomplete/keyword_provider.cc#oldcode435 chrome/browser/autocomplete/keyword_provider.cc:435: if (supports_replacement) On 2011/07/27 20:18:25, Peter Kasting wrote: > ...
9 years, 4 months ago (2011-07-28 16:01:55 UTC) #37
Peter Kasting
On 2011/07/28 00:34:42, aaron.randolph wrote: > On 2011/07/27 20:18:25, Peter Kasting wrote: > > Why ...
9 years, 4 months ago (2011-07-28 18:01:33 UTC) #38
aaron.randolph
On 2011/07/28 18:01:33, Peter Kasting wrote: > You were concerned about matches getting copied a ...
9 years, 4 months ago (2011-07-28 23:17:12 UTC) #39
Peter Kasting
On 2011/07/28 23:17:12, aaron.randolph wrote: > On 2011/07/28 18:01:33, Peter Kasting wrote: > > You ...
9 years, 4 months ago (2011-07-28 23:59:15 UTC) #40
aaron.randolph
I've uploaded a new patch set that I believe addresses all the comments. It also ...
9 years, 4 months ago (2011-07-29 16:58:29 UTC) #41
Peter Kasting
http://codereview.chromium.org/6731036/diff/61089/chrome/browser/autocomplete/search_provider.cc File chrome/browser/autocomplete/search_provider.cc (right): http://codereview.chromium.org/6731036/diff/61089/chrome/browser/autocomplete/search_provider.cc#newcode928 chrome/browser/autocomplete/search_provider.cc:928: match.template_url = is_keyword ? &providers_.keyword_provider() : I don't think ...
9 years, 4 months ago (2011-07-29 21:08:44 UTC) #42
aaron.randolph
http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode586 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:586: LocationBarView::kNormalHorizontalEdgeThickness), On 2011/07/29 21:08:44, Peter Kasting wrote: > Nit: ...
9 years, 4 months ago (2011-07-29 21:57:10 UTC) #43
Peter Kasting
http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode586 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:586: LocationBarView::kNormalHorizontalEdgeThickness), On 2011/07/29 21:57:10, aaron.randolph wrote: > On 2011/07/29 ...
9 years, 4 months ago (2011-07-30 00:00:29 UTC) #44
aaron.randolph
http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode586 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:586: LocationBarView::kNormalHorizontalEdgeThickness), On 2011/07/30 00:00:29, Peter Kasting wrote: > On ...
9 years, 4 months ago (2011-07-30 00:34:17 UTC) #45
aaron.randolph
http://codereview.chromium.org/6731036/diff/63067/chrome/browser/autocomplete/autocomplete_match.h File chrome/browser/autocomplete/autocomplete_match.h (right): http://codereview.chromium.org/6731036/diff/63067/chrome/browser/autocomplete/autocomplete_match.h#newcode198 chrome/browser/autocomplete/autocomplete_match.h:198: // |keyword| is the keyword text. On 2011/07/29 21:08:44, ...
9 years, 4 months ago (2011-07-30 01:59:15 UTC) #46
sky
I would expect shift-tab to do the opposite of tab, but it doesn't always. In ...
9 years, 4 months ago (2011-08-01 16:02:15 UTC) #47
Peter Kasting
On 2011/08/01 16:02:15, sky wrote: > I would expect shift-tab to do the opposite of ...
9 years, 4 months ago (2011-08-01 17:38:52 UTC) #48
Glen Murphy
>> The visuals of the magnifying glass on the right side and '...' leave a ...
9 years, 4 months ago (2011-08-01 17:41:20 UTC) #49
sky
On Mon, Aug 1, 2011 at 10:41 AM, Glen Murphy <glen@chromium.org> wrote: >>> The visuals ...
9 years, 4 months ago (2011-08-02 00:21:22 UTC) #50
aaron.randolph
On 2011/08/01 16:02:15, sky wrote: > With instant enabled I hit the following DCHECK when ...
9 years, 4 months ago (2011-08-02 21:54:58 UTC) #51
sky
On Tue, Aug 2, 2011 at 2:54 PM, <aaron.randolph@gmail.com> wrote: > On 2011/08/01 16:02:15, sky ...
9 years, 4 months ago (2011-08-02 21:58:34 UTC) #52
aaron.randolph
I've just uploaded a new CL that I believe addresses the comments by pkasting and ...
9 years, 4 months ago (2011-08-03 01:50:29 UTC) #53
Peter Kasting
LGTM http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/63067/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode296 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:296: AutocompleteResultView* keyword = On 2011/08/01 16:02:15, sky wrote: ...
9 years, 4 months ago (2011-08-04 20:07:53 UTC) #54
aaron.randolph
http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h File chrome/browser/autocomplete/autocomplete_match.h (right): http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h#newcode197 chrome/browser/autocomplete/autocomplete_match.h:197: // If this is a keyword search match, |keyword| ...
9 years, 4 months ago (2011-08-04 21:02:50 UTC) #55
aaron.randolph
http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/keyword_provider.cc File chrome/browser/autocomplete/keyword_provider.cc (right): http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/keyword_provider.cc#newcode123 chrome/browser/autocomplete/keyword_provider.cc:123: TemplateURLService* model = TemplateURLServiceFactory::GetForProfile(profile); On 2011/08/04 21:02:50, aaron.randolph wrote: ...
9 years, 4 months ago (2011-08-04 21:22:14 UTC) #56
Peter Kasting
http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h File chrome/browser/autocomplete/autocomplete_match.h (right): http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h#newcode197 chrome/browser/autocomplete/autocomplete_match.h:197: // If this is a keyword search match, |keyword| ...
9 years, 4 months ago (2011-08-04 21:31:42 UTC) #57
aaron.randolph
http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h File chrome/browser/autocomplete/autocomplete_match.h (right): http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h#newcode197 chrome/browser/autocomplete/autocomplete_match.h:197: // If this is a keyword search match, |keyword| ...
9 years, 4 months ago (2011-08-04 22:32:25 UTC) #58
Peter Kasting
http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h File chrome/browser/autocomplete/autocomplete_match.h (right): http://codereview.chromium.org/6731036/diff/101001/chrome/browser/autocomplete/autocomplete_match.h#newcode197 chrome/browser/autocomplete/autocomplete_match.h:197: // If this is a keyword search match, |keyword| ...
9 years, 4 months ago (2011-08-04 23:13:16 UTC) #59
aaron.randolph
http://codereview.chromium.org/6731036/diff/101001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/101001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode589 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:589: canvas->drawLine( On 2011/08/04 23:13:16, Peter Kasting wrote: > On ...
9 years, 4 months ago (2011-08-05 00:52:26 UTC) #60
Peter Kasting
On 2011/08/05 00:52:26, aaron.randolph wrote: > the rect drawing calls don't reflect the anti-alias flag, ...
9 years, 4 months ago (2011-08-05 01:25:29 UTC) #61
aaron.randolph
I uploaded a small update that addresses comments by pkasting. I also updated the separation ...
9 years, 4 months ago (2011-08-05 01:27:54 UTC) #62
aaron.randolph
I uploaded a small update that changes the result/keyword divider to look more like the ...
9 years, 4 months ago (2011-08-05 19:55:34 UTC) #63
Peter Kasting
http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode573 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:573: 160); Where did this number come from? The code ...
9 years, 4 months ago (2011-08-05 20:45:17 UTC) #64
aaron.randolph
http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode573 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:573: 160); On 2011/08/05 20:45:17, Peter Kasting wrote: > Where ...
9 years, 4 months ago (2011-08-05 20:56:58 UTC) #65
Peter Kasting
http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode573 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:573: 160); On 2011/08/05 20:56:58, aaron.randolph wrote: > On 2011/08/05 ...
9 years, 4 months ago (2011-08-05 21:02:31 UTC) #66
aaron.randolph
http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/121001/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode573 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:573: 160); On 2011/08/05 21:02:31, Peter Kasting wrote: > On ...
9 years, 4 months ago (2011-08-05 21:48:21 UTC) #67
aaron.randolph
Uploaded a minor change that makes the alpha a constant and that has been tested ...
9 years, 4 months ago (2011-08-05 22:42:59 UTC) #68
Peter Kasting
Still LGTM, but sky should OK before landing.
9 years, 4 months ago (2011-08-05 23:41:54 UTC) #69
sky
If the first entry in the omnibox has a keyword and you hit tab, then ...
9 years, 4 months ago (2011-08-09 00:32:51 UTC) #70
Peter Kasting
On 2011/08/09 00:32:51, sky wrote: > If the first entry in the omnibox has a ...
9 years, 4 months ago (2011-08-09 01:28:04 UTC) #71
aaron.randolph
http://codereview.chromium.org/6731036/diff/82033/chrome/browser/autocomplete/autocomplete.cc File chrome/browser/autocomplete/autocomplete.cc (right): http://codereview.chromium.org/6731036/diff/82033/chrome/browser/autocomplete/autocomplete.cc#newcode1013 chrome/browser/autocomplete/autocomplete.cc:1013: keyword_provider_->CreateAutocompleteMatch(keyword, input_))); On 2011/08/09 00:32:51, sky wrote: > Because ...
9 years, 4 months ago (2011-08-16 17:52:43 UTC) #72
sky
On Mon, Aug 8, 2011 at 6:28 PM, <pkasting@chromium.org> wrote: > On 2011/08/09 00:32:51, sky ...
9 years, 4 months ago (2011-08-17 15:37:51 UTC) #73
sky
http://codereview.chromium.org/6731036/diff/82033/chrome/browser/autocomplete/autocomplete.cc File chrome/browser/autocomplete/autocomplete.cc (right): http://codereview.chromium.org/6731036/diff/82033/chrome/browser/autocomplete/autocomplete.cc#newcode1013 chrome/browser/autocomplete/autocomplete.cc:1013: keyword_provider_->CreateAutocompleteMatch(keyword, input_))); On 2011/08/16 17:52:43, aaron.randolph wrote: > On ...
9 years, 4 months ago (2011-08-17 17:02:19 UTC) #74
aaron.randolph
http://codereview.chromium.org/6731036/diff/82033/chrome/browser/autocomplete/autocomplete.cc File chrome/browser/autocomplete/autocomplete.cc (right): http://codereview.chromium.org/6731036/diff/82033/chrome/browser/autocomplete/autocomplete.cc#newcode1013 chrome/browser/autocomplete/autocomplete.cc:1013: keyword_provider_->CreateAutocompleteMatch(keyword, input_))); On 2011/08/17 17:02:19, sky wrote: > On ...
9 years, 4 months ago (2011-08-17 18:02:46 UTC) #75
aaron.randolph
On 2011/08/17 15:37:51, sky wrote: > On Mon, Aug 8, 2011 at 6:28 PM, <mailto:pkasting@chromium.org> ...
9 years, 4 months ago (2011-08-17 18:52:59 UTC) #76
Peter Kasting
On 2011/08/17 18:52:59, aaron.randolph wrote: > At least when moving down there is some sort ...
9 years, 4 months ago (2011-08-17 19:05:23 UTC) #77
aaron.randolph
I've uploaded a new CL with the following main changes: - SHIFT+TAB movement now mirrors ...
9 years, 4 months ago (2011-08-22 19:10:45 UTC) #78
aaron.randolph
Just wanted to send out a reminder that I uploaded a new change list several ...
9 years, 3 months ago (2011-09-20 23:03:25 UTC) #79
Peter Kasting
On 2011/09/20 23:03:25, aaron.randolph wrote: > Just wanted to send out a reminder that I ...
9 years, 3 months ago (2011-09-21 00:15:20 UTC) #80
Peter Kasting
Also I attached copy of your patch updated to the latest trunk on bug 57748 ...
9 years, 3 months ago (2011-09-21 00:27:02 UTC) #81
aaron.randolph
On 2011/09/21 00:15:20, Peter Kasting wrote: > On 2011/09/20 23:03:25, aaron.randolph wrote: > > Just ...
9 years, 3 months ago (2011-09-21 00:50:28 UTC) #82
aaron.randolph
On 2011/09/21 00:15:20, Peter Kasting wrote: > Obviously we need icons from Glen and the ...
9 years, 2 months ago (2011-10-12 01:41:46 UTC) #83
Peter Kasting
On 2011/10/12 01:41:46, aaron.randolph wrote: > On 2011/09/21 00:15:20, Peter Kasting wrote: > > Obviously ...
9 years, 2 months ago (2011-10-12 20:09:30 UTC) #84
aaron.randolph
I uploaded a new CL that implements the changes suggested by pkasting. Result selection highlight ...
9 years, 1 month ago (2011-11-05 02:44:43 UTC) #85
Peter Kasting
I'm sorry I've not gotten to this. I was unexpectedly OOO several days last week ...
9 years, 1 month ago (2011-11-14 21:17:46 UTC) #86
Peter Kasting
At long last I returned to this. Glen finally gave me some icons; I'll check ...
9 years ago (2011-12-15 22:56:04 UTC) #87
aaron.randolph
I've addressed all the nits, removed the mouse interaction, and fixed some bugs. All I ...
9 years ago (2011-12-20 21:07:56 UTC) #88
Peter Kasting
On 2011/12/20 21:07:56, aaron.randolph wrote: > All I have left is to integrate the new ...
9 years ago (2011-12-21 05:52:16 UTC) #89
aaron.randolph
On 2011/12/21 05:52:16, Peter Kasting wrote: > > Huh, how did we get an async ...
9 years ago (2011-12-21 11:43:47 UTC) #90
Peter Kasting
On 2011/12/21 05:52:16, Peter Kasting wrote: > On 2011/12/20 21:07:56, aaron.randolph wrote: > > All ...
8 years, 11 months ago (2012-01-06 01:03:27 UTC) #91
aaron.randolph
On 2012/01/06 01:03:27, Peter Kasting wrote: > As of today maruel fixed the svn issues, ...
8 years, 11 months ago (2012-01-06 01:58:08 UTC) #92
Peter Kasting
On 2012/01/06 01:58:08, aaron.randolph wrote: > Would it make more sense for me to just ...
8 years, 11 months ago (2012-01-06 17:53:03 UTC) #93
aaron.randolph
I've uploaded a new patch that addresses the nits and uses the official icons. It ...
8 years, 11 months ago (2012-01-07 00:00:36 UTC) #94
aaron.randolph
Re-uploaded as I forgot an updated unit test.
8 years, 11 months ago (2012-01-07 00:08:19 UTC) #95
aaron.randolph
Updated the patch to fix an issue with accepting a keyword when the popup is ...
8 years, 11 months ago (2012-01-08 23:23:27 UTC) #96
Peter Kasting
The main thing this still needs is to be patched in and tested by me/sky/glen. ...
8 years, 11 months ago (2012-01-11 03:00:16 UTC) #97
aaron.randolph
Pushed up a new patch to address the nits. http://codereview.chromium.org/6731036/diff/187001/chrome/browser/autocomplete/autocomplete.cc File chrome/browser/autocomplete/autocomplete.cc (right): http://codereview.chromium.org/6731036/diff/187001/chrome/browser/autocomplete/autocomplete.cc#newcode1015 chrome/browser/autocomplete/autocomplete.cc:1015: ...
8 years, 11 months ago (2012-01-11 22:36:21 UTC) #98
Peter Kasting
On 2012/01/11 03:00:16, Peter Kasting wrote: > The main thing this still needs is to ...
8 years, 11 months ago (2012-01-11 22:38:54 UTC) #99
aaron.randolph
On 2012/01/11 22:38:54, Peter Kasting wrote: > > Otherwise, Glen gave the "looks good, ship ...
8 years, 11 months ago (2012-01-12 00:38:00 UTC) #100
Peter Kasting
On 2012/01/11 22:38:54, Peter Kasting wrote: > (2) There are some visual problems because the ...
8 years, 11 months ago (2012-01-12 01:51:52 UTC) #101
aaron.randolph
I pushed out an update that addresses the issues found. The RTL issues were an ...
8 years, 11 months ago (2012-01-12 03:20:00 UTC) #102
Peter Kasting
http://codereview.chromium.org/6731036/diff/199006/chrome/browser/autocomplete/autocomplete.cc File chrome/browser/autocomplete/autocomplete.cc (right): http://codereview.chromium.org/6731036/diff/199006/chrome/browser/autocomplete/autocomplete.cc#newcode1008 chrome/browser/autocomplete/autocomplete.cc:1008: // updated if fill_into_edit differs. We don't check the ...
8 years, 11 months ago (2012-01-12 22:59:59 UTC) #103
aaron.randolph
http://codereview.chromium.org/6731036/diff/199006/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc (right): http://codereview.chromium.org/6731036/diff/199006/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc#newcode180 chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc:180: if (match.associated_keyword.get()) { On 2012/01/12 22:59:59, Peter Kasting wrote: ...
8 years, 11 months ago (2012-01-13 00:03:48 UTC) #104
Peter Kasting
Never give me an opportunity to re-review a file, I'll find more nits :P http://codereview.chromium.org/6731036/diff/199006/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc ...
8 years, 11 months ago (2012-01-13 00:36:41 UTC) #105
aaron.randolph
http://codereview.chromium.org/6731036/diff/199006/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc File chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc (right): http://codereview.chromium.org/6731036/diff/199006/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc#newcode294 chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc:294: model_->selected_line_state() == AutocompletePopupModel::KEYWORD); On 2012/01/12 22:59:59, Peter Kasting wrote: ...
8 years, 11 months ago (2012-01-13 03:08:07 UTC) #106
aaron.randolph
Uploaded a new patch to address the nits and updated the patch description.
8 years, 11 months ago (2012-01-13 03:33:47 UTC) #107
Peter Kasting
http://codereview.chromium.org/6731036/diff/206001/chrome/browser/autocomplete/autocomplete.cc File chrome/browser/autocomplete/autocomplete.cc (right): http://codereview.chromium.org/6731036/diff/206001/chrome/browser/autocomplete/autocomplete.cc#newcode1010 chrome/browser/autocomplete/autocomplete.cc:1010: // finishes loading while processing this request.). We don't ...
8 years, 11 months ago (2012-01-13 19:18:18 UTC) #108
aaron.randolph
While testing the changes for the latest nits, I ran into a state where I'm ...
8 years, 11 months ago (2012-01-13 20:23:19 UTC) #109
Peter Kasting
On 2012/01/13 20:23:19, aaron.randolph wrote: > While testing the changes for the latest nits, I ...
8 years, 11 months ago (2012-01-13 20:35:56 UTC) #110
aaron.randolph
On 2012/01/13 20:35:56, Peter Kasting wrote: > On 2012/01/13 20:23:19, aaron.randolph wrote: > > While ...
8 years, 11 months ago (2012-01-13 21:20:51 UTC) #111
aaron.randolph
On 2012/01/13 20:35:56, Peter Kasting wrote: > It seems like if the fill_into_edit on the ...
8 years, 11 months ago (2012-01-13 21:52:39 UTC) #112
Peter Kasting
On 2012/01/13 21:52:39, aaron.randolph wrote: > If I paste "amazon.com foo" into the edit, the ...
8 years, 11 months ago (2012-01-13 21:58:50 UTC) #113
aaron.randolph
One final question (I hope.) If I have "amazon.com fo," I get these matches: 1) ...
8 years, 11 months ago (2012-01-14 00:17:28 UTC) #114
aaron.randolph
Uploaded a new patch that addresses the nits and fixes several bugs.
8 years, 11 months ago (2012-01-14 00:49:18 UTC) #115
Peter Kasting
On 2012/01/14 00:17:28, aaron.randolph wrote: > One final question (I hope.) If I have "amazon.com ...
8 years, 11 months ago (2012-01-14 01:27:01 UTC) #116
Peter Kasting
http://codereview.chromium.org/6731036/diff/186007/chrome/browser/autocomplete/autocomplete_edit.cc File chrome/browser/autocomplete/autocomplete_edit.cc (right): http://codereview.chromium.org/6731036/diff/186007/chrome/browser/autocomplete/autocomplete_edit.cc#newcode653 chrome/browser/autocomplete/autocomplete_edit.cc:653: view_->SetWindowTextAndCaretPos(window_text.c_str(), keyword_.length()); This isn't right, because we also need ...
8 years, 11 months ago (2012-01-14 02:00:11 UTC) #117
aaron.randolph
On 2012/01/14 01:27:01, Peter Kasting wrote: > Is the fill_into_edit on this one "amazon.com" (or ...
8 years, 11 months ago (2012-01-14 02:39:45 UTC) #118
aaron.randolph
Uploaded a new patch that adds two flags to SetWindowTextAndCaretPos. http://codereview.chromium.org/6731036/diff/211059/chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc File chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc (right): http://codereview.chromium.org/6731036/diff/211059/chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc#newcode650 ...
8 years, 11 months ago (2012-01-14 04:25:33 UTC) #119
Peter Kasting
I'll launch a try run for this stuff. http://codereview.chromium.org/6731036/diff/211059/chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc File chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc (right): http://codereview.chromium.org/6731036/diff/211059/chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc#newcode650 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc:650: TextChanged(); ...
8 years, 11 months ago (2012-01-18 18:41:31 UTC) #120
aaron.randolph
On 2012/01/18 18:41:31, Peter Kasting wrote: > I'll launch a try run for this stuff. ...
8 years, 11 months ago (2012-01-18 20:53:54 UTC) #121
Peter Kasting
On 2012/01/18 20:53:54, aaron.randolph wrote: > On 2012/01/18 18:41:31, Peter Kasting wrote: > > I'll ...
8 years, 11 months ago (2012-01-18 21:01:13 UTC) #122
aaron.randolph
Uploaded a new CL that addresses Mac/Linux compile errors (autocomplete_popup_model.h/,cc, autocomplete_result_view.cc) and the failing unit ...
8 years, 11 months ago (2012-01-19 03:03:23 UTC) #123
aaron.randolph
For the Linux and Mac tests, I can probably make them pass by removing the ...
8 years, 11 months ago (2012-01-19 23:13:36 UTC) #124
Peter Kasting
On 2012/01/19 23:13:36, aaron.randolph wrote: > For the Linux and Mac tests, I can probably ...
8 years, 11 months ago (2012-01-19 23:39:36 UTC) #125
aaron.randolph
Updated the CL to add traversal behavior to Mac and Linux, and updated the description ...
8 years, 11 months ago (2012-01-23 04:48:43 UTC) #126
Peter Kasting
On 2012/01/23 04:48:43, aaron.randolph wrote: > Updated the CL to add traversal behavior to Mac ...
8 years, 11 months ago (2012-01-24 19:14:44 UTC) #127
aaron.randolph
Actually, I didn't feel it was confusing at all, surprisingly. It almost made sense if ...
8 years, 11 months ago (2012-01-24 21:18:33 UTC) #128
Peter Kasting
On 2012/01/24 21:18:33, aaron.randolph wrote: > Actually, I didn't feel it was confusing at all, ...
8 years, 11 months ago (2012-01-24 21:44:16 UTC) #129
sail
mac keycode changes look good to me. adding rsesek and thakis to review the cocoa/* ...
8 years, 11 months ago (2012-01-24 21:57:36 UTC) #130
Nico
shess is the mac omnibox man On Mac, tab should probably only cycle through all ...
8 years, 11 months ago (2012-01-24 22:03:20 UTC) #131
aaron.randolph
Updated the CL to the latest revision to address the try failures, and addressed the ...
8 years, 11 months ago (2012-01-24 22:13:26 UTC) #132
Peter Kasting
On 2012/01/24 22:03:20, Nico wrote: > On Mac, tab should probably only cycle through all ...
8 years, 11 months ago (2012-01-24 22:18:00 UTC) #133
aaron.randolph
Updated the CL to remove up/down movement from the Mac version.
8 years, 11 months ago (2012-01-24 22:55:27 UTC) #134
Peter Kasting
On 2012/01/24 22:55:27, aaron.randolph wrote: > Updated the CL to remove up/down movement from the ...
8 years, 11 months ago (2012-01-24 22:58:54 UTC) #135
aaron.randolph
On 2012/01/24 22:58:54, Peter Kasting wrote: > It doesn't look like this forced us to ...
8 years, 11 months ago (2012-01-24 23:16:03 UTC) #136
Peter Kasting
On 2012/01/24 23:16:03, aaron.randolph wrote: > On 2012/01/24 22:58:54, Peter Kasting wrote: > > It ...
8 years, 11 months ago (2012-01-24 23:21:05 UTC) #137
aaron.randolph
Updated the CL with a test for tab traversal and fixed the Mac failure.
8 years, 11 months ago (2012-01-25 02:37:33 UTC) #138
Peter Kasting
Thanks for the test! LGTM, I'll kick off another try iteration tomorrow. http://codereview.chromium.org/6731036/diff/261098/chrome/browser/ui/omnibox/omnibox_view_browsertest.cc File chrome/browser/ui/omnibox/omnibox_view_browsertest.cc ...
8 years, 11 months ago (2012-01-25 05:53:05 UTC) #139
aaron.randolph
On 2012/01/25 05:53:05, Peter Kasting wrote: > Nit: Optional form: I'll change this later today. ...
8 years, 11 months ago (2012-01-26 13:28:33 UTC) #140
aaron.randolph
Updated the traversal test to be more comprehensive.
8 years, 11 months ago (2012-01-27 02:58:17 UTC) #141
aaron.randolph
Updated the revision to address the try failures. (Not sure why Authors was failing to ...
8 years, 11 months ago (2012-01-27 03:28:46 UTC) #142
Peter Kasting
Looks like there's an error in the linux_rel run on the latest version of the ...
8 years, 11 months ago (2012-01-27 17:26:21 UTC) #143
aaron.randolph
On 2012/01/27 17:26:21, Peter Kasting wrote: > Looks like there's an error in the linux_rel ...
8 years, 11 months ago (2012-01-27 21:41:12 UTC) #144
Peter Kasting
On 2012/01/27 21:41:12, aaron.randolph wrote: > On 2012/01/27 17:26:21, Peter Kasting wrote: > > Looks ...
8 years, 11 months ago (2012-01-27 21:52:14 UTC) #145
Peter Kasting
(BTW, the reason I'm pushing back here is that even if the failure is flaky, ...
8 years, 11 months ago (2012-01-27 21:53:11 UTC) #146
aaron.randolph
On 2012/01/27 21:53:11, Peter Kasting wrote: > (BTW, the reason I'm pushing back here is ...
8 years, 11 months ago (2012-01-27 22:13:26 UTC) #147
Peter Kasting
I asked the linux_rel bot to run again and also asked the linux bot (i.e. ...
8 years, 11 months ago (2012-01-27 22:24:30 UTC) #148
aaron.randolph
On 2012/01/27 22:24:30, Peter Kasting wrote: > I asked the linux_rel bot to run again ...
8 years, 11 months ago (2012-01-27 23:12:01 UTC) #149
aaron.randolph
Well, looks like it's consistent. However, it's interesting that NonSubstitutingKeywordTest also failed because the popup ...
8 years, 11 months ago (2012-01-28 02:07:50 UTC) #150
aaron.randolph
I was able to reproduce the failure after switching to the same window manager the ...
8 years, 10 months ago (2012-01-29 19:54:19 UTC) #151
Elliot Glaysher
1) this cr is amazing 2) the OnBeforeShowBrowser() is probably used correctly; it should also ...
8 years, 10 months ago (2012-01-31 00:53:43 UTC) #152
Peter Kasting
Changes LGTM. Filed and assigned bug 112041 regarding more detailed investigation of this function. I ...
8 years, 10 months ago (2012-01-31 01:54:06 UTC) #153
aaron.randolph
FYI, PopupAccelerators fails on Ubuntu Unity but passes on icewm. A gtk widget reference count ...
8 years, 10 months ago (2012-01-31 02:57:27 UTC) #154
Elliot Glaysher
On 2012/01/31 02:57:27, aaron.randolph wrote: > FYI, PopupAccelerators fails on Ubuntu Unity but passes on ...
8 years, 10 months ago (2012-01-31 19:35:19 UTC) #155
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/aaron.randolph@gmail.com/6731036/227112
8 years, 10 months ago (2012-01-31 19:41:07 UTC) #156
commit-bot: I haz the power
Presubmit check for 6731036-227112 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 10 months ago (2012-01-31 19:41:28 UTC) #157
Peter Kasting
erg, can you officially OWNERS LGTM for chrome/browser/ui/gtk? sail/rsesk, can one of you OWNERS LGTM ...
8 years, 10 months ago (2012-01-31 19:47:11 UTC) #158
sky
Rubber stamp LGTM
8 years, 10 months ago (2012-01-31 19:49:37 UTC) #159
Robert Sesek
cocoa/ LGTM http://codereview.chromium.org/6731036/diff/227112/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm File chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm (right): http://codereview.chromium.org/6731036/diff/227112/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm#newcode818 chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm:818: if (model_->popup_model()->selected_line_state() == nit: You can merge ...
8 years, 10 months ago (2012-01-31 19:55:12 UTC) #160
Elliot Glaysher
gtk lgtm
8 years, 10 months ago (2012-01-31 20:02:29 UTC) #161
Peter Kasting
Aaron, if you want to get rsesek's last, trivial nit and resync to trunk, I'll ...
8 years, 10 months ago (2012-01-31 20:21:38 UTC) #162
aaron.randolph
On 2012/01/31 20:21:38, Peter Kasting wrote: > Aaron, if you want to get rsesek's last, ...
8 years, 10 months ago (2012-01-31 20:24:00 UTC) #163
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/aaron.randolph@gmail.com/6731036/285005
8 years, 10 months ago (2012-01-31 21:00:57 UTC) #164
aaron.randolph
Uploaded a fix for the mac compile failure.
8 years, 10 months ago (2012-01-31 21:43:00 UTC) #165
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/aaron.randolph@gmail.com/6731036/282045
8 years, 10 months ago (2012-01-31 21:44:18 UTC) #166
commit-bot: I haz the power
Try job failure for 6731036-282045 (retry) on linux_rel for step "ui_tests". It's a second try, ...
8 years, 10 months ago (2012-01-31 23:08:01 UTC) #167
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/aaron.randolph@gmail.com/6731036/282045
8 years, 10 months ago (2012-01-31 23:19:38 UTC) #168
commit-bot: I haz the power
8 years, 10 months ago (2012-02-01 01:52:31 UTC) #169
Change committed as 120005

Powered by Google App Engine
This is Rietveld 408576698