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

Issue 23026006: Add support for color input datalist on Android (Closed)

Created:
7 years, 4 months ago by keishi
Modified:
7 years ago
CC:
chromium-reviews, extensions-reviews_chromium.org, vsevik, tfarina, jam, yurys, joi+watch-content_chromium.org, paulirish+reviews_chromium.org, darin-cc_chromium.org, devtools-reviews_chromium.org, chromium-apps-reviews_chromium.org, aandrey+blink_chromium.org, pfeldman, miu+watch_chromium.org
Visibility:
Public.

Description

Add support for color input datalist on Android We pass the list of suggestions when opening the color chooser. We also pass the suggestion labels but we aren't using them yet. We should use them in the future to improve accessibility. The suggestions are arranged in a grid with four columns. BUG=242455 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=237890

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Total comments: 38

Patch Set 5 : Made ColorSuggestion struct #

Patch Set 6 : better layout #

Patch Set 7 : fixed #

Patch Set 8 : fixed #

Patch Set 9 : Fixed comments #

Patch Set 10 : #

Total comments: 33

Patch Set 11 : Fixed #

Total comments: 10

Patch Set 12 : #

Total comments: 1

Patch Set 13 : Fixed nit #

Patch Set 14 : #

Total comments: 4

Patch Set 15 : #

Patch Set 16 : #

Patch Set 17 : #

Total comments: 1

Patch Set 18 : Switched to ListView #

Patch Set 19 : Rebased #

Total comments: 48

Patch Set 20 : #

Total comments: 17

Patch Set 21 : Fixed #

Patch Set 22 : #

Total comments: 8

Patch Set 23 : Fixed nits #

Patch Set 24 : #

Patch Set 25 : #

Patch Set 26 : Rebased #

Patch Set 27 : #

Patch Set 28 : added to r.java #

Patch Set 29 : #

Patch Set 30 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+533 lines, -231 lines) Patch
M apps/shell_window.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 27 28 29 1 chunk +3 lines, -1 line 0 comments Download
M apps/shell_window.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 27 28 29 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/devtools/devtools_window.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 29 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/devtools/devtools_window.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 29 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/extension_host.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 29 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/extensions/extension_host.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 27 28 29 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/ui/browser.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/browser.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 27 28 2 chunks +4 lines, -3 lines 0 comments Download
M chrome/browser/ui/views/external_tab_container_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/external_tab_container_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 27 28 1 chunk +3 lines, -1 line 0 comments Download
M components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java View 1 2 3 4 5 6 7 8 9 10 4 chunks +23 lines, -4 lines 0 comments Download
M components/web_contents_delegate_android/color_chooser_android.h View 1 2 3 4 3 chunks +5 lines, -1 line 0 comments Download
M components/web_contents_delegate_android/color_chooser_android.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +29 lines, -3 lines 0 comments Download
M components/web_contents_delegate_android/web_contents_delegate_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +4 lines, -2 lines 0 comments Download
M components/web_contents_delegate_android/web_contents_delegate_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +5 lines, -3 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.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 29 2 chunks +4 lines, -1 line 0 comments Download
M content/browser/web_contents/web_contents_impl.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 27 28 29 1 chunk +6 lines, -3 lines 0 comments Download
M content/common/view_messages.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 27 28 29 3 chunks +9 lines, -2 lines 0 comments Download
M content/content_common.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 27 28 29 2 chunks +3 lines, -0 lines 0 comments Download
M content/public/browser/web_contents_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +5 lines, -2 lines 0 comments Download
M content/public/browser/web_contents_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +3 lines, -1 line 0 comments Download
A content/public/common/color_suggestion.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 1 chunk +30 lines, -0 lines 0 comments Download
A content/public/common/color_suggestion.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 1 chunk +16 lines, -0 lines 0 comments Download
M content/renderer/render_view_impl.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 1 chunk +3 lines, -1 line 0 comments Download
M content/renderer/render_view_impl.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 29 2 chunks +8 lines, -2 lines 0 comments Download
M content/renderer/renderer_webcolorchooser_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +5 lines, -1 line 0 comments Download
M content/renderer/renderer_webcolorchooser_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +7 lines, -3 lines 0 comments Download
A ui/android/java/res/drawable/color_button_background.xml View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +36 lines, -0 lines 0 comments Download
M ui/android/java/res/drawable/color_picker_border.xml View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +5 lines, -3 lines 0 comments Download
M ui/android/java/res/layout/color_picker_dialog_content.xml View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +32 lines, -37 lines 0 comments Download
M ui/android/java/res/values/colors.xml 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 1 chunk +1 line, -0 lines 0 comments Download
M ui/android/java/res/values/dimens.xml 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 1 chunk +1 line, -0 lines 0 comments Download
M ui/android/java/resource_map/org/chromium/ui/R.java 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 4 chunks +11 lines, -0 lines 0 comments Download
M ui/android/java/src/org/chromium/ui/ColorPickerAdvanced.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +0 lines, -1 line 0 comments Download
M ui/android/java/src/org/chromium/ui/ColorPickerDialog.java View 1 2 3 4 3 chunks +8 lines, -4 lines 0 comments Download
M ui/android/java/src/org/chromium/ui/ColorPickerSimple.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +50 lines, -144 lines 0 comments Download
A ui/android/java/src/org/chromium/ui/ColorSuggestion.java View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +24 lines, -0 lines 0 comments Download
A ui/android/java/src/org/chromium/ui/ColorSuggestionListAdapter.java 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 28 29 1 chunk +146 lines, -0 lines 0 comments Download
M ui/android/java/strings/android_ui_strings.grd View 1 2 3 4 5 6 7 8 9 10 1 chunk +24 lines, -0 lines 0 comments Download

Messages

Total messages: 58 (0 generated)
keishi
Blink side patch is being reviewed here: https://codereview.chromium.org/23236002/
7 years, 4 months ago (2013-08-19 13:52:55 UTC) #1
Miguel Garcia
Thanks for doing this! Some general comments, let me know what you think ok? Also ...
7 years, 4 months ago (2013-08-19 14:43:27 UTC) #2
newt (away)
https://codereview.chromium.org/23026006/diff/5030/components/web_contents_delegate_android/web_contents_delegate_android.h File components/web_contents_delegate_android/web_contents_delegate_android.h (right): https://codereview.chromium.org/23026006/diff/5030/components/web_contents_delegate_android/web_contents_delegate_android.h#newcode60 components/web_contents_delegate_android/web_contents_delegate_android.h:60: const std::vector<string16>& suggestion_values) OVERRIDE; "suggestion_labels" https://codereview.chromium.org/23026006/diff/5030/content/public/browser/web_contents_delegate.cc File content/public/browser/web_contents_delegate.cc (right): ...
7 years, 4 months ago (2013-08-19 23:18:19 UTC) #3
keishi
https://codereview.chromium.org/23026006/diff/5030/apps/shell_window.h File apps/shell_window.h (right): https://codereview.chromium.org/23026006/diff/5030/apps/shell_window.h#newcode261 apps/shell_window.h:261: content::WebContents* web_contents, On 2013/08/19 14:43:27, Miguel Garcia wrote: > ...
7 years, 4 months ago (2013-08-26 05:28:53 UTC) #4
keishi
palmer@ could you review the IPC changes in view_messages.h. Thanks,
7 years, 4 months ago (2013-08-26 05:30:14 UTC) #5
newt (away)
https://codereview.chromium.org/23026006/diff/28001/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java File components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java (right): https://codereview.chromium.org/23026006/diff/28001/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java#newcode68 components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java:68: * @param name Name of the suggestion. these params ...
7 years, 3 months ago (2013-08-26 20:23:19 UTC) #6
palmer
https://codereview.chromium.org/23026006/diff/28001/ui/android/java/src/org/chromium/ui/ColorSuggestion.java File ui/android/java/src/org/chromium/ui/ColorSuggestion.java (right): https://codereview.chromium.org/23026006/diff/28001/ui/android/java/src/org/chromium/ui/ColorSuggestion.java#newcode18 ui/android/java/src/org/chromium/ui/ColorSuggestion.java:18: * @param valueAsText The suggested color value as a ...
7 years, 3 months ago (2013-08-26 20:38:00 UTC) #7
Miguel Garcia
https://codereview.chromium.org/23026006/diff/5030/ui/android/java/src/org/chromium/ui/ColorPickerSimple.java File ui/android/java/src/org/chromium/ui/ColorPickerSimple.java (right): https://codereview.chromium.org/23026006/diff/5030/ui/android/java/src/org/chromium/ui/ColorPickerSimple.java#newcode71 ui/android/java/src/org/chromium/ui/ColorPickerSimple.java:71: public void init(int[] colors, Do we really need 10K? ...
7 years, 3 months ago (2013-08-27 14:31:59 UTC) #8
newt (away)
https://codereview.chromium.org/23026006/diff/5030/ui/android/java/src/org/chromium/ui/ColorPickerSimple.java File ui/android/java/src/org/chromium/ui/ColorPickerSimple.java (right): https://codereview.chromium.org/23026006/diff/5030/ui/android/java/src/org/chromium/ui/ColorPickerSimple.java#newcode71 ui/android/java/src/org/chromium/ui/ColorPickerSimple.java:71: public void init(int[] colors, On 2013/08/27 14:32:00, Miguel Garcia ...
7 years, 3 months ago (2013-08-27 16:05:28 UTC) #9
keishi
Default colors: https://docs.google.com/file/d/0BwRi59l_ri74eER5N1ZDSl9NZDQ/edit?usp=sharing Portrait (dialog height grows to fit all the color buttons): https://docs.google.com/file/d/0BwRi59l_ri74UmI1amRfQVZxWG8/edit?usp=sharing Landscape ...
7 years, 3 months ago (2013-08-29 03:40:47 UTC) #10
keishi
I removed valueAsText. I intended valueAsText to contain the color converted to string by Blink. ...
7 years, 3 months ago (2013-08-29 04:18:43 UTC) #11
keishi
https://codereview.chromium.org/23026006/diff/5030/ui/android/java/src/org/chromium/ui/ColorPickerSimple.java File ui/android/java/src/org/chromium/ui/ColorPickerSimple.java (right): https://codereview.chromium.org/23026006/diff/5030/ui/android/java/src/org/chromium/ui/ColorPickerSimple.java#newcode71 ui/android/java/src/org/chromium/ui/ColorPickerSimple.java:71: public void init(int[] colors, On 2013/08/27 16:05:29, newt wrote: ...
7 years, 3 months ago (2013-08-29 05:04:10 UTC) #12
newt (away)
Thanks for working on this! A few more nits, and: - could you upload screenshots ...
7 years, 3 months ago (2013-08-29 05:35:33 UTC) #13
palmer
lgtm https://codereview.chromium.org/23026006/diff/95001/ui/android/java/src/org/chromium/ui/ColorSuggestion.java File ui/android/java/src/org/chromium/ui/ColorSuggestion.java (right): https://codereview.chromium.org/23026006/diff/95001/ui/android/java/src/org/chromium/ui/ColorSuggestion.java#newcode9 ui/android/java/src/org/chromium/ui/ColorSuggestion.java:9: * the simple color picker.. Nit: End sentence ...
7 years, 3 months ago (2013-08-29 19:05:41 UTC) #14
keishi
Maybe the change in appearance is making it hard to review. I tried to achieve ...
7 years, 3 months ago (2013-09-04 13:26:15 UTC) #15
newt (away)
Thanks for the screenshots. Does this screenshot https://docs.google.com/a/google.com/file/d/0BwRi59l_ri74QTJDdHZVbHpYYzg/edit show what this current CL looks like? ...
7 years, 3 months ago (2013-09-04 17:42:59 UTC) #16
keishi
On 2013/09/04 17:42:59, newt wrote: > Thanks for the screenshots. Does this screenshot > https://docs.google.com/a/google.com/file/d/0BwRi59l_ri74QTJDdHZVbHpYYzg/edit ...
7 years, 3 months ago (2013-09-06 13:09:41 UTC) #17
newt (away)
looks good, with one comment, and I think you should run the design changes past ...
7 years, 3 months ago (2013-09-06 21:04:31 UTC) #18
keishi
I was able to create something close to the current color picker by using ListView ...
7 years, 3 months ago (2013-09-12 12:17:16 UTC) #19
keishi
On 2013/09/12 12:17:16, keishi1 wrote: > I was able to create something close to the ...
7 years, 2 months ago (2013-10-01 14:19:40 UTC) #20
newt (away)
Thanks, keishi, I think this is a pretty good approach. I have some comments inline. ...
7 years, 2 months ago (2013-10-09 06:07:02 UTC) #21
keishi
https://codereview.chromium.org/23026006/diff/134001/ui/android/java/res/drawable/color_button_background.xml File ui/android/java/res/drawable/color_button_background.xml (right): https://codereview.chromium.org/23026006/diff/134001/ui/android/java/res/drawable/color_button_background.xml#newcode9 ui/android/java/res/drawable/color_button_background.xml:9: On 2013/10/09 06:07:03, newt wrote: > remove stray empty ...
7 years, 2 months ago (2013-10-15 16:44:01 UTC) #22
newt (away)
https://codereview.chromium.org/23026006/diff/144001/ui/android/java/res/drawable/color_button_background.xml File ui/android/java/res/drawable/color_button_background.xml (right): https://codereview.chromium.org/23026006/diff/144001/ui/android/java/res/drawable/color_button_background.xml#newcode8 ui/android/java/res/drawable/color_button_background.xml:8: <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> this is currently a bit broken in ...
7 years, 2 months ago (2013-10-15 18:00:14 UTC) #23
keishi
https://codereview.chromium.org/23026006/diff/144001/ui/android/java/res/drawable/color_button_background.xml File ui/android/java/res/drawable/color_button_background.xml (right): https://codereview.chromium.org/23026006/diff/144001/ui/android/java/res/drawable/color_button_background.xml#newcode8 ui/android/java/res/drawable/color_button_background.xml:8: <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> On 2013/10/15 18:00:15, newt wrote: > this ...
7 years, 2 months ago (2013-10-16 04:47:22 UTC) #24
newt (away)
keishi, did you mean to upload another patch set?
7 years, 2 months ago (2013-10-18 22:26:58 UTC) #25
keishi
On 2013/10/18 22:26:58, newt wrote: > keishi, did you mean to upload another patch set? ...
7 years, 2 months ago (2013-10-21 17:26:58 UTC) #26
newt (away)
LGTM! Thanks so much Keishi. Looking forward to seeing this in action :) https://codereview.chromium.org/23026006/diff/144001/ui/android/java/res/layout/color_picker_dialog_content.xml File ...
7 years, 2 months ago (2013-10-22 04:04:47 UTC) #27
Miguel Garcia
lgtm
7 years, 1 month ago (2013-11-06 17:43:24 UTC) #28
keishi
+joth Could you review the change to ColorChooserAndroid.java? +primiano Could you review the change to ...
7 years, 1 month ago (2013-11-07 12:47:02 UTC) #29
Primiano Tucci (use gerrit)
LGTM. Thanks for the cc.
7 years, 1 month ago (2013-11-07 18:09:23 UTC) #30
jam
lgtm https://codereview.chromium.org/23026006/diff/275001/content/public/common/color_suggestion.h File content/public/common/color_suggestion.h (right): https://codereview.chromium.org/23026006/diff/275001/content/public/common/color_suggestion.h#newcode8 content/public/common/color_suggestion.h:8: #include <vector> nit: not needed https://codereview.chromium.org/23026006/diff/275001/content/public/common/color_suggestion.h#newcode20 content/public/common/color_suggestion.h:20: nti: ...
7 years, 1 month ago (2013-11-07 18:51:55 UTC) #31
keishi
https://codereview.chromium.org/23026006/diff/275001/content/public/common/color_suggestion.h File content/public/common/color_suggestion.h (right): https://codereview.chromium.org/23026006/diff/275001/content/public/common/color_suggestion.h#newcode8 content/public/common/color_suggestion.h:8: #include <vector> On 2013/11/07 18:51:57, jam wrote: > nit: ...
7 years, 1 month ago (2013-11-13 10:48:11 UTC) #32
keishi
joth@ ben@ Please take a look. Thanks.
7 years, 1 month ago (2013-11-20 11:20:38 UTC) #33
Ben Goodger (Google)
On 2013/11/20 11:20:38, keishi1 wrote: > joth@ ben@ Please take a look. Thanks. Which files ...
7 years, 1 month ago (2013-11-20 18:45:39 UTC) #34
joth
On 2013/11/07 12:47:02, keishi1 wrote: > +joth Could you review the change to ColorChooserAndroid.java? components/web_contents_delegate_android ...
7 years, 1 month ago (2013-11-20 18:57:26 UTC) #35
Ben Goodger (Google)
lgtm for those files. FTR, I wish we would invent some way of isolating features ...
7 years, 1 month ago (2013-11-20 21:44:53 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years, 1 month ago (2013-11-21 13:38:18 UTC) #37
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=37416
7 years, 1 month ago (2013-11-21 13:57:03 UTC) #38
keishi
kenrb@ Hi. Could your review the change to view_messages.h? Thanks.
7 years, 1 month ago (2013-11-21 14:07:26 UTC) #39
kenrb
lgtm
7 years, 1 month ago (2013-11-22 20:37:48 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years ago (2013-11-25 03:37:07 UTC) #41
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=37871
7 years ago (2013-11-25 03:55:08 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years ago (2013-11-25 06:00:23 UTC) #43
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=37881
7 years ago (2013-11-25 06:15:29 UTC) #44
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years ago (2013-11-25 07:33:38 UTC) #45
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=37890
7 years ago (2013-11-25 07:49:41 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years ago (2013-11-25 11:45:14 UTC) #47
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=37909
7 years ago (2013-11-25 11:59:37 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years ago (2013-11-26 02:03:08 UTC) #49
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=38076
7 years ago (2013-11-26 02:18:43 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/565001
7 years ago (2013-11-27 07:08:00 UTC) #51
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=38326
7 years ago (2013-11-27 07:22:13 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/935001
7 years ago (2013-11-29 02:47:13 UTC) #53
commit-bot: I haz the power
Retried try job too often on ios_rel_device for step(s) compile http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=ios_rel_device&number=98895
7 years ago (2013-11-29 03:14:52 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/955001
7 years ago (2013-11-29 05:10:09 UTC) #55
commit-bot: I haz the power
Retried try job too often on ios_rel_device for step(s) compile http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=ios_rel_device&number=98921
7 years ago (2013-11-29 05:34:53 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23026006/955001
7 years ago (2013-11-29 06:33:23 UTC) #57
commit-bot: I haz the power
7 years ago (2013-11-29 06:34:10 UTC) #58
Message was sent while issue was closed.
Change committed as 237890

Powered by Google App Engine
This is Rietveld 408576698