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

Issue 569623002: Switch ChromeOS Chromium login to use IJG libjpeg (Closed)

Created:
6 years, 3 months ago by Ed Baker
Modified:
5 years, 7 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Switch ChromeOS Chromium login to use IJG libjpeg The default libjpeg library is libjpeg_turbo, except for Chrome OS. This change switches the Chrome OS build to use IJG jpeg for the login screen. The intended outcome is to have everything use libjpeg_turbo except for JPEGCodec in ui/gfx. ChromeUtilityMsg_RobustJPEGDecodeImage: Send decodes to JPEGCodec which then uses chromium_ijg_ mangled libjpeg to decode JPEGs. ChromeUtilityMsg_DecodeImage: Send decodes to blink WebImage. Any JPEGs would then be decoded with libjpeg_turbo mangled with chromium_jpeg_. User login code avatar/user_image_manager_impl.cc and wallpaper/wallpaper_manager.cc currently setup UserImageLoader with ImageDecoder::ROBUST_JPEG_DECODE. Tests were run on a Peppy (Haswell 2955U), using the image_decoding benchmark in telemetry. ImageDecoding_avg.image_decoding.html?jpg: Stock (ms): 166.98 166.80 163.03 Patch (ms): 78.95 73.27 78.23 TBR=cpu@chromium.org BUG=413712 TEST= $ cd ./tools/perf $ ./run_benchmark --remote=${IP} \ --browser=cros-chrome-guest \ run image_decoding.image_decoding_measurement Committed: https://crrev.com/199f66b202c942421e25ced69471f7d9d1f2c4a7 Cr-Commit-Position: refs/heads/master@{#328812}

Patch Set 1 #

Total comments: 1

Patch Set 2 : ChromeOS never uses USE_SYSTEM_* #

Total comments: 1

Patch Set 3 : Update BUILD.gn and add GYP libjpeg variables #

Total comments: 1

Patch Set 4 : Update BUILD.gn with TODO #

Total comments: 4

Patch Set 5 : First submission, update AUTHORS #

Patch Set 6 : Only modify build configuration #

Patch Set 7 : Rebase on ToT #

Total comments: 2

Patch Set 8 : Rebase #

Patch Set 9 : Wrap third_party/BUILD.gn config inside if #

Patch Set 10 : Copy decode portion of JPEGCodec to create JPEGCodecRobust #

Patch Set 11 : Update GYP/GN patch set #

Patch Set 12 : Update JPEGCodecRobust #

Total comments: 2

Patch Set 13 : JPEGCodecRobustSlow #

Total comments: 13

Patch Set 14 : Fix copyright and add unit test assertions #

Unified diffs Side-by-side diffs Delta from patch set Stats (+183 lines, -330 lines) Patch
M AUTHORS View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M build/common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +7 lines, -4 lines 0 comments Download
M chrome/browser/image_decoder.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/image_decoder.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/chrome_utility_messages.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/utility/chrome_content_utility_client.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M chrome/utility/chrome_content_utility_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +10 lines, -4 lines 0 comments Download
M ui/gfx/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +14 lines, -0 lines 0 comments Download
A ui/gfx/chromeos/codec/DEPS View 1 2 3 4 5 6 7 8 9 11 1 chunk +4 lines, -0 lines 0 comments Download
A ui/gfx/chromeos/codec/OWNERS View 1 2 3 4 5 6 7 8 9 11 1 chunk +1 line, -0 lines 0 comments Download
A + ui/gfx/chromeos/codec/jpeg_codec_robust_slow.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +8 lines, -31 lines 0 comments Download
A + ui/gfx/chromeos/codec/jpeg_codec_robust_slow.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +9 lines, -290 lines 0 comments Download
A ui/gfx/chromeos/codec/jpeg_codec_robust_slow_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +107 lines, -0 lines 0 comments Download
M ui/gfx/gfx.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +10 lines, -0 lines 0 comments Download
M ui/gfx/gfx_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 84 (9 generated)
Ed Baker
I went through all of the commits from BUG=144296 and stepped through the history to ...
6 years, 3 months ago (2014-09-12 15:48:45 UTC) #2
Jorge Lucangeli Obes
On 2014/09/12 15:48:45, Ed Baker wrote: > I went through all of the commits from ...
6 years, 3 months ago (2014-09-16 15:34:43 UTC) #3
Ed Baker
On 2014/09/16 15:34:43, Jorge Lucangeli Obes wrote: > On 2014/09/12 15:48:45, Ed Baker wrote: > ...
6 years, 3 months ago (2014-09-16 16:33:24 UTC) #5
Elliot Glaysher
lgtm++ https://chromiumcodereview.appspot.com/569623002/diff/1/ui/gfx/codec/jpeg_codec.cc File ui/gfx/codec/jpeg_codec.cc (right): https://chromiumcodereview.appspot.com/569623002/diff/1/ui/gfx/codec/jpeg_codec.cc#newcode15 ui/gfx/codec/jpeg_codec.cc:15: #if defined(USE_SYSTEM_LIBJPEG) && !defined(OS_CHROMEOS) I don't believe that ...
6 years, 3 months ago (2014-09-16 18:01:58 UTC) #6
Ed Baker
On 2014/09/16 18:01:58, Elliot Glaysher wrote: > lgtm++ > > https://chromiumcodereview.appspot.com/569623002/diff/1/ui/gfx/codec/jpeg_codec.cc > File ui/gfx/codec/jpeg_codec.cc (right): ...
6 years, 3 months ago (2014-09-16 19:48:17 UTC) #7
Jorge Lucangeli Obes
On 2014/09/16 19:48:17, Ed Baker wrote: > On 2014/09/16 18:01:58, Elliot Glaysher wrote: > > ...
6 years, 3 months ago (2014-09-16 21:11:31 UTC) #8
Ed Baker
On 2014/09/16 21:11:31, Jorge Lucangeli Obes wrote: > On 2014/09/16 19:48:17, Ed Baker wrote: > ...
6 years, 3 months ago (2014-09-17 05:20:02 UTC) #10
sky
https://chromiumcodereview.appspot.com/569623002/diff/20001/ui/gfx/gfx.gyp File ui/gfx/gfx.gyp (right): https://chromiumcodereview.appspot.com/569623002/diff/20001/ui/gfx/gfx.gyp#newcode366 ui/gfx/gfx.gyp:366: '<(DEPTH)/third_party/libjpeg/libjpeg.gyp:libjpeg', Can you make this: '<(libjpeg_gyp_path):libjpeg', just like on ...
6 years, 3 months ago (2014-09-17 14:38:20 UTC) #11
sky
Also, do you need to update ui/gfx/BUILD.gn?
6 years, 3 months ago (2014-09-17 14:38:42 UTC) #12
Jorge Lucangeli Obes
On 2014/09/17 14:38:42, sky wrote: > Also, do you need to update ui/gfx/BUILD.gn? I'm guessing ...
6 years, 3 months ago (2014-09-17 14:39:41 UTC) #13
Ed Baker
On 2014/09/17 14:38:20, sky wrote: > https://chromiumcodereview.appspot.com/569623002/diff/20001/ui/gfx/gfx.gyp > File ui/gfx/gfx.gyp (right): > > https://chromiumcodereview.appspot.com/569623002/diff/20001/ui/gfx/gfx.gyp#newcode366 > ...
6 years, 3 months ago (2014-09-17 17:40:11 UTC) #14
Ed Baker
On 2014/09/17 14:38:42, sky wrote: > Also, do you need to update ui/gfx/BUILD.gn? Updated in ...
6 years, 3 months ago (2014-09-18 20:25:21 UTC) #15
Ed Baker
On 2014/09/17 17:40:11, Ed Baker wrote: > On 2014/09/17 14:38:20, sky wrote: > > https://chromiumcodereview.appspot.com/569623002/diff/20001/ui/gfx/gfx.gyp ...
6 years, 3 months ago (2014-09-18 20:28:11 UTC) #16
Jorge Lucangeli Obes
On 2014/09/18 20:25:21, Ed Baker wrote: > On 2014/09/17 14:38:42, sky wrote: > > Also, ...
6 years, 3 months ago (2014-09-18 20:54:31 UTC) #17
Jorge Lucangeli Obes
https://chromiumcodereview.appspot.com/569623002/diff/40001/ui/gfx/BUILD.gn File ui/gfx/BUILD.gn (right): https://chromiumcodereview.appspot.com/569623002/diff/40001/ui/gfx/BUILD.gn#newcode322 ui/gfx/BUILD.gn:322: # ChromeOS Nit: Chrome OS with a space.
6 years, 3 months ago (2014-09-18 20:54:39 UTC) #18
sky
https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn File ui/gfx/BUILD.gn (right): https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn#newcode323 ui/gfx/BUILD.gn:323: # TODO(jorgelo): make sure this works on Chrome OS. ...
6 years, 3 months ago (2014-09-18 22:19:37 UTC) #19
Ed Baker
On 2014/09/18 20:54:31, Jorge Lucangeli Obes wrote: > On 2014/09/18 20:25:21, Ed Baker wrote: > ...
6 years, 3 months ago (2014-09-18 22:19:51 UTC) #20
Jorge Lucangeli Obes
https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn File ui/gfx/BUILD.gn (right): https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn#newcode323 ui/gfx/BUILD.gn:323: # TODO(jorgelo): make sure this works on Chrome OS. ...
6 years, 3 months ago (2014-09-18 22:22:23 UTC) #21
Ed Baker
https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/codec/jpeg_codec.cc File ui/gfx/codec/jpeg_codec.cc (right): https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/codec/jpeg_codec.cc#newcode17 ui/gfx/codec/jpeg_codec.cc:17: #elif defined(USE_LIBJPEG_TURBO) && !defined(OS_CHROMEOS) On 2014/09/18 22:19:37, sky wrote: ...
6 years, 3 months ago (2014-09-18 23:07:36 UTC) #22
Ed Baker
On 2014/09/18 23:07:36, Ed Baker wrote: > https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/codec/jpeg_codec.cc > File ui/gfx/codec/jpeg_codec.cc (right): > > https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/codec/jpeg_codec.cc#newcode17 ...
6 years, 3 months ago (2014-09-18 23:54:17 UTC) #23
sky
I guess that means you can't verify it:( On Thu, Sep 18, 2014 at 3:22 ...
6 years, 3 months ago (2014-09-19 02:53:16 UTC) #24
Ed Baker
On 2014/09/18 22:19:37, sky wrote: > https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn > File ui/gfx/BUILD.gn (right): > > https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn#newcode323 > ...
6 years, 3 months ago (2014-09-22 18:30:40 UTC) #25
Jorge Lucangeli Obes
On 2014/09/22 18:30:40, Ed Baker wrote: > On 2014/09/18 22:19:37, sky wrote: > > https://chromiumcodereview.appspot.com/569623002/diff/60001/ui/gfx/BUILD.gn ...
6 years, 3 months ago (2014-09-22 18:32:08 UTC) #26
Ed Baker
On 2014/09/22 18:32:08, Jorge Lucangeli Obes wrote: > On 2014/09/22 18:30:40, Ed Baker wrote: > ...
6 years, 3 months ago (2014-09-22 19:54:47 UTC) #27
Ed Baker
On 2014/09/22 19:54:47, Ed Baker wrote: > On 2014/09/22 18:32:08, Jorge Lucangeli Obes wrote: > ...
6 years, 3 months ago (2014-09-23 19:49:43 UTC) #28
Jorge Lucangeli Obes
On 2014/09/23 19:49:43, Ed Baker wrote: > On 2014/09/22 19:54:47, Ed Baker wrote: > > ...
6 years, 3 months ago (2014-09-23 21:42:04 UTC) #29
Ed Baker
On 2014/09/23 21:42:04, Jorge Lucangeli Obes wrote: > On 2014/09/23 19:49:43, Ed Baker wrote: > ...
6 years, 2 months ago (2014-10-02 23:29:03 UTC) #30
sky
On 2014/10/02 23:29:03, Ed Baker wrote: > On 2014/09/23 21:42:04, Jorge Lucangeli Obes wrote: > ...
6 years, 2 months ago (2014-10-03 14:45:34 UTC) #32
Jorge Lucangeli Obes
On 2014/10/03 14:45:34, sky wrote: > On 2014/10/02 23:29:03, Ed Baker wrote: > > On ...
6 years, 2 months ago (2014-10-03 18:35:11 UTC) #33
sky
Doesn't non-chromeos code also call into the ui/gfx decoder? On Fri, Oct 3, 2014 at ...
6 years, 2 months ago (2014-10-03 20:05:17 UTC) #34
sky
If you want something different for chromeos, then shouldn't it be in a chromeos directory ...
6 years, 2 months ago (2014-10-03 20:17:47 UTC) #35
Ed Baker
On 2014/10/03 20:05:17, sky wrote: > Doesn't non-chromeos code also call into the ui/gfx decoder? ...
6 years, 2 months ago (2014-10-06 15:35:41 UTC) #36
Ed Baker
On 2014/10/03 20:17:47, sky wrote: > If you want something different for chromeos, then shouldn't ...
6 years, 2 months ago (2014-10-06 16:06:30 UTC) #37
sky
Again, I don't like the assumption that on chromeos ui/gfx needs a more robust decoder. ...
6 years, 2 months ago (2014-10-06 18:21:28 UTC) #38
Jorge Lucangeli Obes
On 2014/10/06 18:21:28, sky wrote: > Again, I don't like the assumption that on chromeos ...
6 years, 2 months ago (2014-10-06 23:25:14 UTC) #39
sky
Yes please. On Mon, Oct 6, 2014 at 4:25 PM, <jorgelo@chromium.org> wrote: > On 2014/10/06 ...
6 years, 2 months ago (2014-10-06 23:52:33 UTC) #40
Jorge Lucangeli Obes
On 2014/10/06 23:52:33, sky wrote: > Yes please. We can do that. I would still ...
6 years, 2 months ago (2014-10-07 00:25:54 UTC) #41
sky
I would rather see this done the right way. Using a different decoder in different ...
6 years, 2 months ago (2014-10-07 15:20:22 UTC) #42
Jorge Lucangeli Obes
On 2014/10/07 15:20:22, sky wrote: > I would rather see this done the right way. ...
6 years, 2 months ago (2014-10-07 20:24:14 UTC) #43
Ed Baker
On 2014/10/07 20:24:14, Jorge Lucangeli Obes wrote: > On 2014/10/07 15:20:22, sky wrote: > > ...
6 years, 2 months ago (2014-10-07 21:11:38 UTC) #44
sky
On Tue, Oct 7, 2014 at 2:11 PM, <edward.baker@intel.com> wrote: > On 2014/10/07 20:24:14, Jorge ...
6 years, 2 months ago (2014-10-07 23:02:59 UTC) #45
Ed Baker
Patch set 9 addresses the third_party/BUILD.gn suggestion before submitting a completely different approach. https://chromiumcodereview.appspot.com/569623002/diff/120001/third_party/BUILD.gn File ...
6 years, 1 month ago (2014-10-30 23:29:48 UTC) #46
Ed Baker
On 2014/10/30 23:29:48, Ed Baker wrote: > Patch set 9 addresses the third_party/BUILD.gn suggestion before ...
6 years, 1 month ago (2014-11-03 23:06:51 UTC) #47
Jorge Lucangeli Obes
On 2014/11/03 23:06:51, Ed Baker wrote: > On 2014/10/30 23:29:48, Ed Baker wrote: > > ...
6 years, 1 month ago (2014-11-06 18:50:46 UTC) #48
Ed Baker
On 2014/11/06 18:50:46, Jorge Lucangeli Obes wrote: > On 2014/11/03 23:06:51, Ed Baker wrote: > ...
6 years, 1 month ago (2014-11-18 23:45:30 UTC) #49
Jorge Lucangeli Obes
On 2014/11/18 23:45:30, Ed Baker wrote: > On 2014/11/06 18:50:46, Jorge Lucangeli Obes wrote: > ...
6 years, 1 month ago (2014-11-19 00:05:44 UTC) #50
Ed Baker
On 2014/11/19 00:05:44, Jorge Lucangeli Obes wrote: > On 2014/11/18 23:45:30, Ed Baker wrote: > ...
6 years, 1 month ago (2014-11-20 21:20:58 UTC) #51
Ed Baker
On 2014/11/20 21:20:58, Ed Baker wrote: > On 2014/11/19 00:05:44, Jorge Lucangeli Obes wrote: > ...
6 years ago (2014-12-10 01:18:48 UTC) #52
Ed Baker
Patch set 12 rebases and updates the dedicated robust decoding class. Associated plumbing unique to ...
5 years, 8 months ago (2015-04-22 16:26:09 UTC) #53
ilja
Tests have been fixed. Lab is ready. I observe halfing of time on Chromebook Pixel ...
5 years, 7 months ago (2015-05-04 21:09:48 UTC) #54
Ed Baker
+thakis for build/common.gypi
5 years, 7 months ago (2015-05-05 16:24:27 UTC) #56
Nico
common.gypi looks fine, but I'd name the target "robust_and_slow" or something similar that makes the ...
5 years, 7 months ago (2015-05-05 18:05:42 UTC) #57
Ed Baker
On 2015/05/05 18:05:42, Nico wrote: > common.gypi looks fine, but I'd name the target "robust_and_slow" ...
5 years, 7 months ago (2015-05-05 22:02:29 UTC) #58
Ed Baker
https://chromiumcodereview.appspot.com/569623002/diff/220001/build/common.gypi File build/common.gypi (right): https://chromiumcodereview.appspot.com/569623002/diff/220001/build/common.gypi#newcode1505 build/common.gypi:1505: 'libjpeg_ijg_gyp_path': '../third_party/libjpeg/libjpeg.gyp', On 2015/05/05 18:05:42, Nico wrote: > I ...
5 years, 7 months ago (2015-05-05 22:03:34 UTC) #59
Jorge Lucangeli Obes
On 2015/05/05 18:05:42, Nico wrote: > common.gypi looks fine, but I'd name the target "robust_and_slow" ...
5 years, 7 months ago (2015-05-05 22:07:24 UTC) #60
Nico
lgtm, thanks!
5 years, 7 months ago (2015-05-05 23:23:17 UTC) #61
Ed Baker
sky: When you get a minute could you review the latest patch set?
5 years, 7 months ago (2015-05-06 18:23:01 UTC) #62
sky
On 2014/10/03 18:35:11, Jorge Lucangeli Obes wrote: > On 2014/10/03 14:45:34, sky wrote: > > ...
5 years, 7 months ago (2015-05-06 20:04:27 UTC) #63
Jorge Lucangeli Obes
On 2015/05/06 20:04:27, sky wrote: > On 2014/10/03 18:35:11, Jorge Lucangeli Obes wrote: > > ...
5 years, 7 months ago (2015-05-06 20:50:03 UTC) #64
sky
On Wed, May 6, 2015 at 1:50 PM, <jorgelo@chromium.org> wrote: > On 2015/05/06 20:04:27, sky ...
5 years, 7 months ago (2015-05-06 21:01:40 UTC) #65
Jorge Lucangeli Obes
On 2015/05/06 21:01:40, sky wrote: > On Wed, May 6, 2015 at 1:50 PM, <mailto:jorgelo@chromium.org> ...
5 years, 7 months ago (2015-05-06 21:10:38 UTC) #66
sky
https://codereview.chromium.org/569623002/diff/240001/chrome/browser/image_decoder.h File chrome/browser/image_decoder.h (right): https://codereview.chromium.org/569623002/diff/240001/chrome/browser/image_decoder.h#newcode62 chrome/browser/image_decoder.h:62: ROBUST_JPEG_CODEC, // Restrict decoding to robust jpeg codec. Could ...
5 years, 7 months ago (2015-05-06 21:44:28 UTC) #67
Jorge Lucangeli Obes
https://codereview.chromium.org/569623002/diff/240001/ui/gfx/chromeos/codec/OWNERS File ui/gfx/chromeos/codec/OWNERS (right): https://codereview.chromium.org/569623002/diff/240001/ui/gfx/chromeos/codec/OWNERS#newcode1 ui/gfx/chromeos/codec/OWNERS:1: jorgelo@chromium.org On 2015/05/06 21:44:27, sky wrote: > Are you ...
5 years, 7 months ago (2015-05-06 21:46:08 UTC) #68
sky
https://codereview.chromium.org/569623002/diff/240001/ui/gfx/chromeos/codec/OWNERS File ui/gfx/chromeos/codec/OWNERS (right): https://codereview.chromium.org/569623002/diff/240001/ui/gfx/chromeos/codec/OWNERS#newcode1 ui/gfx/chromeos/codec/OWNERS:1: jorgelo@chromium.org On 2015/05/06 21:46:08, Jorge Lucangeli Obes wrote: > ...
5 years, 7 months ago (2015-05-06 22:18:33 UTC) #69
Ed Baker
https://chromiumcodereview.appspot.com/569623002/diff/240001/chrome/browser/image_decoder.h File chrome/browser/image_decoder.h (right): https://chromiumcodereview.appspot.com/569623002/diff/240001/chrome/browser/image_decoder.h#newcode62 chrome/browser/image_decoder.h:62: ROBUST_JPEG_CODEC, // Restrict decoding to robust jpeg codec. On ...
5 years, 7 months ago (2015-05-07 00:31:42 UTC) #70
sky
LGTM
5 years, 7 months ago (2015-05-07 16:18:41 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/569623002/260001
5 years, 7 months ago (2015-05-07 17:45:48 UTC) #74
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/61872)
5 years, 7 months ago (2015-05-07 17:56:18 UTC) #76
Jorge Lucangeli Obes
Looks like we need OWNERS for third_party/libjpeg
5 years, 7 months ago (2015-05-07 17:59:53 UTC) #77
Ed Baker
On 2015/05/07 17:59:53, Jorge Lucangeli Obes wrote: > Looks like we need OWNERS for third_party/libjpeg ...
5 years, 7 months ago (2015-05-07 18:11:13 UTC) #78
Jorge Lucangeli Obes
I think editing the description should work.
5 years, 7 months ago (2015-05-07 18:13:51 UTC) #79
sky
It should On Thu, May 7, 2015 at 11:11 AM, <edward.baker@intel.com> wrote: > On 2015/05/07 ...
5 years, 7 months ago (2015-05-07 18:13:52 UTC) #80
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/569623002/260001
5 years, 7 months ago (2015-05-07 18:43:27 UTC) #82
commit-bot: I haz the power
Committed patchset #14 (id:260001)
5 years, 7 months ago (2015-05-07 19:13:39 UTC) #83
commit-bot: I haz the power
5 years, 7 months ago (2015-05-07 19:14:30 UTC) #84
Message was sent while issue was closed.
Patchset 14 (id:??) landed as
https://crrev.com/199f66b202c942421e25ced69471f7d9d1f2c4a7
Cr-Commit-Position: refs/heads/master@{#328812}

Powered by Google App Engine
This is Rietveld 408576698