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

Issue 333603002: Modularize Compact Language Detector 2 (CLD2) data sources (Closed)

Created:
6 years, 6 months ago by Andrew Hayden (chromium.org)
Modified:
6 years, 6 months ago
CC:
chromium-reviews, rginda+watch_chromium.org, yoshiki+watch_chromium.org, darin-cc_chromium.org, mkosiba (inactive)
Project:
chromium
Visibility:
Public.

Description

This patch defines three mechanisms for acquiring CLD2's data: 1. Static linking (the way it is done today) 2. Standalone dynamic data file bundled with the application 3. Dynamic data file downloaded via the Component Updater This change does NOT switch any implementation to a different cld data source. Android/iOS remain pinned to CLD1, and all platforms continue to statically link the data with cld2_data_source="static". This change has several important side effects: 1. The gyp variables "cld2_dynamic" and "cld2_is_component" have been removed. There is now a single variable, "cld2_data_source", that defines which implementation is to be used. 2. cld_component_installer.[h,cc] and cld_component_installer_unittest.cc are now conditionally built if and only if cld2_data_source=="component" and have direct dependencies upon components/translate/content/browser. 3. Almost all preprocesser checks for the CLD data source have been removed, greatly simplifying code flow. The logic previously gated by these checks has been split into separate implementation classes whose inclusion is controlled by the cld2_data_source gyp variable. For more information, refer to crbug/383769. BUG=383769 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=279415

Patch Set 1 #

Patch Set 2 : Add renderer-side, clean up browser-side to match crbug #

Patch Set 3 : Switch to the new implementation and clean up #ifdefs #

Total comments: 1

Patch Set 4 : Refactor code locations #

Patch Set 5 : Fix compiler errors #

Total comments: 56

Patch Set 6 : Refactorings required from relocation #

Patch Set 7 : Takashi's comments and virtual destructors #

Total comments: 24

Patch Set 8 : Get browser_tests running, and add static-compile (no-op) implementations #

Patch Set 9 : droger@'s comments #

Patch Set 10 : Restore build/common.gypi #

Patch Set 11 : same treatment for browser tests, and clean up gyp #

Patch Set 12 : Make unit tests work again #

Patch Set 13 : Back to 'static' for cld2_data_source #

Patch Set 14 : Rebase onto latest master (no conflicts) #

Patch Set 15 : Fix unit tests; can't use fakes after all. #

Patch Set 16 : Exclude cld_component_installer for non-component-updater builds #

Patch Set 17 : Virtual overrides, for clang. <3 clang. #

Patch Set 18 : Moar virtual override for clang, <3 clang #

Patch Set 19 : Use base/memory/scoped_ptr.h, not base/scoped_ptr.h #

Total comments: 79

Patch Set 20 : Remove unnecessary check for file_manager app id #

Total comments: 15

Patch Set 21 : toyoshim@'s non-renaming comments #

Patch Set 22 : Last few non-rename comments from toyoshim@ #

Patch Set 23 : Rename all scoped_cld_* classes (toyoshim@) #

Patch Set 24 : git cl format #

Total comments: 1

Patch Set 25 : Rebase (no merge conflicts) #

Patch Set 26 : Address final nit #

Patch Set 27 : update comment in build/common.gypi #

Patch Set 28 : really final nits #

Patch Set 29 : Rebase #

Patch Set 30 : merge https://codereview.chromium.org/326383005 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1464 lines, -727 lines) Patch
M build/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 5 chunks +20 lines, -22 lines 0 comments Download
M chrome/browser/chrome_browser_main.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 3 chunks +5 lines, -2 lines 0 comments Download
M chrome/browser/component_updater/cld_component_installer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +8 lines, -7 lines 0 comments Download
M chrome/browser/component_updater/cld_component_installer.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 4 chunks +9 lines, -19 lines 0 comments Download
M chrome/browser/component_updater/test/cld_component_installer_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 2 chunks +35 lines, -21 lines 0 comments Download
M chrome/browser/policy/policy_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 2 chunks +4 lines, -3 lines 0 comments Download
M chrome/browser/translate/chrome_translate_client.h View 1 2 3 4 5 6 7 8 5 chunks +4 lines, -46 lines 0 comments Download
M chrome/browser/translate/chrome_translate_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +35 lines, -156 lines 0 comments Download
A chrome/browser/translate/cld_data_harness.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +80 lines, -0 lines 0 comments Download
A chrome/browser/translate/cld_data_harness.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 1 chunk +32 lines, -0 lines 0 comments Download
A chrome/browser/translate/component_cld_data_harness.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +31 lines, -0 lines 0 comments Download
A chrome/browser/translate/component_cld_data_harness.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 1 chunk +99 lines, -0 lines 0 comments Download
A chrome/browser/translate/standalone_cld_data_harness.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +29 lines, -0 lines 0 comments Download
A chrome/browser/translate/standalone_cld_data_harness.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 1 chunk +82 lines, -0 lines 0 comments Download
A chrome/browser/translate/static_cld_data_harness.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +24 lines, -0 lines 0 comments Download
A chrome/browser/translate/static_cld_data_harness.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +26 lines, -0 lines 0 comments Download
M chrome/browser/translate/translate_browser_test_utils.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -66 lines 0 comments Download
D chrome/browser/translate/translate_browser_test_utils.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 +0 lines, -167 lines 0 comments Download
M chrome/browser/translate/translate_manager_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 3 chunks +8 lines, -5 lines 0 comments Download
M chrome/browser/ui/browser_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 3 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/ui/views/translate/translate_bubble_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 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/chrome_browser.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 +6 lines, -2 lines 0 comments Download
M chrome/chrome_renderer.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 1 chunk +1 line, -0 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 27 28 29 2 chunks +20 lines, -2 lines 0 comments Download
M chrome/chrome_tests_unit.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 2 chunks +5 lines, -1 line 0 comments Download
M chrome/common/chrome_constants.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 1 chunk +0 lines, -1 line 0 comments Download
M chrome/common/chrome_constants.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 +0 lines, -2 lines 0 comments Download
M chrome/renderer/DEPS View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/translate/translate_helper.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 4 chunks +30 lines, -57 lines 0 comments Download
M chrome/renderer/translate/translate_helper.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 10 chunks +39 lines, -110 lines 0 comments Download
M components/translate.gypi View 1 2 3 4 5 6 7 8 9 10 12 13 14 2 chunks +52 lines, -0 lines 0 comments Download
A components/translate/content/browser/browser_cld_data_provider.h View 1 2 3 4 5 6 7 8 1 chunk +64 lines, -0 lines 0 comments Download
A components/translate/content/browser/data_file_browser_cld_data_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 1 chunk +54 lines, -0 lines 0 comments Download
A components/translate/content/browser/data_file_browser_cld_data_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 27 1 chunk +224 lines, -0 lines 0 comments Download
A components/translate/content/browser/static_browser_cld_data_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +28 lines, -0 lines 0 comments Download
A components/translate/content/browser/static_browser_cld_data_provider.cc View 1 2 3 4 5 6 7 8 1 chunk +39 lines, -0 lines 0 comments Download
A components/translate/content/common/data_file_cld_data_provider_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 1 chunk +32 lines, -0 lines 0 comments Download
A + components/translate/content/common/data_file_cld_data_provider_messages.cc View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
M components/translate/content/common/translate_messages.h View 1 2 3 chunks +0 lines, -24 lines 0 comments Download
A + components/translate/content/renderer/DEPS View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
A components/translate/content/renderer/data_file_renderer_cld_data_provider.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 +40 lines, -0 lines 0 comments Download
A components/translate/content/renderer/data_file_renderer_cld_data_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 1 chunk +127 lines, -0 lines 0 comments Download
A components/translate/content/renderer/renderer_cld_data_provider.h View 1 2 3 4 5 6 7 8 1 chunk +72 lines, -0 lines 0 comments Download
A components/translate/content/renderer/static_renderer_cld_data_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +34 lines, -0 lines 0 comments Download
A components/translate/content/renderer/static_renderer_cld_data_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 1 chunk +45 lines, -0 lines 0 comments Download
M ipc/ipc_message_start.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download
M third_party/cld_2/cld_2.gyp View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 55 (0 generated)
Andrew Hayden (chromium.org)
Work in progress, but feel free to take a look. Style nits are premature at ...
6 years, 6 months ago (2014-06-12 02:54:52 UTC) #1
Andrew Hayden (chromium.org)
Still not ready for nits, but renderer and browser implementations are now theoretically ready to ...
6 years, 6 months ago (2014-06-12 12:41:08 UTC) #2
Andrew Hayden (chromium.org)
not LGTM https://codereview.chromium.org/333603002/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/333603002/diff/40001/build/common.gypi#newcode686 build/common.gypi:686: 'cld_version%': 2, Don't ship this yet.
6 years, 6 months ago (2014-06-14 23:51:29 UTC) #3
Andrew Hayden (chromium.org)
Need to define destructors for the cld_data_provider classes in order to comply with gcc requirements, ...
6 years, 6 months ago (2014-06-15 00:17:40 UTC) #4
jam
this shouldn't be changing code in content, since translate is a feature in chrome. see ...
6 years, 6 months ago (2014-06-16 05:57:52 UTC) #5
Andrew Hayden (chromium.org)
jam@ (and Takashi): Right, sorry. How about chrome/[renderer|browser|common]/translate or should this be part of the ...
6 years, 6 months ago (2014-06-16 11:13:41 UTC) #6
Andrew Hayden (chromium.org)
This is almost ready, sans relocation of code and getting browser tests running again.
6 years, 6 months ago (2014-06-16 11:14:54 UTC) #7
droger
This code should go in the translate component if possible. Here is my suggestion: renderer_cld_data_provider ...
6 years, 6 months ago (2014-06-16 13:09:58 UTC) #8
Andrew Hayden (chromium.org)
I got a note back from Takashi as well saying he is in agreement. I'll ...
6 years, 6 months ago (2014-06-17 11:37:03 UTC) #9
Andrew Hayden (chromium.org)
Are these locations acceptable to all?
6 years, 6 months ago (2014-06-18 15:58:53 UTC) #10
droger
File structure looks fine to me. https://codereview.chromium.org/333603002/diff/80001/chrome/renderer/DEPS File chrome/renderer/DEPS (right): https://codereview.chromium.org/333603002/diff/80001/chrome/renderer/DEPS#newcode15 chrome/renderer/DEPS:15: "+content/common", This looks ...
6 years, 6 months ago (2014-06-19 08:38:23 UTC) #11
Andrew Hayden (chromium.org)
Thanks, droger@. https://codereview.chromium.org/333603002/diff/80001/chrome/renderer/DEPS File chrome/renderer/DEPS (right): https://codereview.chromium.org/333603002/diff/80001/chrome/renderer/DEPS#newcode15 chrome/renderer/DEPS:15: "+content/common", On 2014/06/19 08:38:22, droger wrote: > ...
6 years, 6 months ago (2014-06-19 09:27:11 UTC) #12
Takashi Toyoshima
Locations look fine with me. Quick review comments follow; https://codereview.chromium.org/333603002/diff/80001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/333603002/diff/80001/build/common.gypi#newcode686 build/common.gypi:686: ...
6 years, 6 months ago (2014-06-19 10:20:35 UTC) #13
Andrew Hayden (chromium.org)
I'll get to Takashi's comments in just a moment. I've finished cleaning up the refactoring ...
6 years, 6 months ago (2014-06-19 12:37:37 UTC) #14
Andrew Hayden (chromium.org)
All of Takashi's comments addressed. Destructors added. https://codereview.chromium.org/333603002/diff/80001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/333603002/diff/80001/build/common.gypi#newcode686 build/common.gypi:686: 'cld_version%': 2, ...
6 years, 6 months ago (2014-06-19 13:40:20 UTC) #15
Andrew Hayden (chromium.org)
I'm now working on getting browser tests running again under the new framework. I do ...
6 years, 6 months ago (2014-06-19 13:45:25 UTC) #16
droger
https://codereview.chromium.org/333603002/diff/120001/chrome/browser/component_updater/DEPS File chrome/browser/component_updater/DEPS (right): https://codereview.chromium.org/333603002/diff/120001/chrome/browser/component_updater/DEPS#newcode2 chrome/browser/component_updater/DEPS:2: "+components/translate/content/browser", this is already covered by chrome/browser/DEPS https://codereview.chromium.org/333603002/diff/120001/chrome/browser/translate/chrome_translate_client.cc File ...
6 years, 6 months ago (2014-06-19 16:13:19 UTC) #17
Andrew Hayden (chromium.org)
All comments so far are now addressed, and I've added the static-compiled (no-op) implementations that ...
6 years, 6 months ago (2014-06-19 19:49:30 UTC) #18
Andrew Hayden (chromium.org)
Stand by, browser tests need more work. The current implementation of translate_browser_test_utils has EXACTLY the ...
6 years, 6 months ago (2014-06-19 21:16:55 UTC) #19
Andrew Hayden (chromium.org)
OK, I think this is finally, FINALLY complete. All the unit tests and browser tests ...
6 years, 6 months ago (2014-06-20 17:22:23 UTC) #20
jam
On 2014/06/20 17:22:23, Andrew Hayden wrote: > OK, I think this is finally, FINALLY complete. ...
6 years, 6 months ago (2014-06-20 17:50:17 UTC) #21
palmer
IPC security LGTM.
6 years, 6 months ago (2014-06-20 18:00:17 UTC) #22
Andrew Hayden (chromium.org)
On 2014/06/20 17:50:17, jam wrote: > lgtm for these files > > please add a ...
6 years, 6 months ago (2014-06-20 18:14:51 UTC) #23
Andrew Hayden (chromium.org)
Next up, unit_tests apparently builds differently on android than it does on linux, leading to ...
6 years, 6 months ago (2014-06-20 18:34:22 UTC) #24
droger
On 2014/06/20 18:34:22, Andrew Hayden wrote: > Next up, unit_tests apparently builds differently on android ...
6 years, 6 months ago (2014-06-20 19:32:56 UTC) #25
Andrew Hayden (chromium.org)
On 2014/06/20 19:32:56, droger wrote: > I think I know what happens with android. > ...
6 years, 6 months ago (2014-06-20 19:47:37 UTC) #26
Andrew Hayden (chromium.org)
I've updated the patch description. jam@: is this more to your liking?
6 years, 6 months ago (2014-06-20 21:30:16 UTC) #27
Andrew Hayden (chromium.org)
https://codereview.chromium.org/333603002/diff/360001/chrome/renderer/translate/translate_helper.cc File chrome/renderer/translate/translate_helper.cc (right): https://codereview.chromium.org/333603002/diff/360001/chrome/renderer/translate/translate_helper.cc#newcode101 chrome/renderer/translate/translate_helper.cc:101: // TODO(andrewhayden): Refactor translate_manager.cc's IsTranslatableURL to This is biting ...
6 years, 6 months ago (2014-06-21 07:40:28 UTC) #28
droger
https://codereview.chromium.org/333603002/diff/360001/chrome/renderer/translate/translate_helper.cc File chrome/renderer/translate/translate_helper.cc (right): https://codereview.chromium.org/333603002/diff/360001/chrome/renderer/translate/translate_helper.cc#newcode101 chrome/renderer/translate/translate_helper.cc:101: // TODO(andrewhayden): Refactor translate_manager.cc's IsTranslatableURL to On 2014/06/21 07:40:28, ...
6 years, 6 months ago (2014-06-23 08:31:31 UTC) #29
Andrew Hayden (chromium.org)
On 2014/06/23 08:31:31, droger wrote: > I don't think this can go in components/translate/core/: > ...
6 years, 6 months ago (2014-06-23 08:48:38 UTC) #30
Takashi Toyoshima
I didn't finish reviewing on files under components, but I'd publish it. https://codereview.chromium.org/333603002/diff/360001/build/common.gypi File build/common.gypi ...
6 years, 6 months ago (2014-06-23 08:50:02 UTC) #31
Takashi Toyoshima
Comments for components/ https://codereview.chromium.org/333603002/diff/380001/components/translate/content/browser/data_file_browser_cld_data_provider.h File components/translate/content/browser/data_file_browser_cld_data_provider.h (right): https://codereview.chromium.org/333603002/diff/380001/components/translate/content/browser/data_file_browser_cld_data_provider.h#newcode45 components/translate/content/browser/data_file_browser_cld_data_provider.h:45: content::RenderViewHost* render_view_host; render_view_host_ https://codereview.chromium.org/333603002/diff/380001/components/translate/content/renderer/data_file_renderer_cld_data_provider.cc File components/translate/content/renderer/data_file_renderer_cld_data_provider.cc ...
6 years, 6 months ago (2014-06-23 09:22:58 UTC) #32
Andrew Hayden (chromium.org)
Uploaded patchset. https://codereview.chromium.org/333603002/diff/360001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/333603002/diff/360001/build/common.gypi#newcode2694 build/common.gypi:2694: 'defines': ['CLD2_DYNAMIC_MODE'], On 2014/06/23 08:49:59, Takashi Toyoshima ...
6 years, 6 months ago (2014-06-23 13:20:36 UTC) #33
Andrew Hayden (chromium.org)
The last bits of toyohsim@'s non-rename-related comments addressed. https://codereview.chromium.org/333603002/diff/380001/components/translate/content/browser/data_file_browser_cld_data_provider.h File components/translate/content/browser/data_file_browser_cld_data_provider.h (right): https://codereview.chromium.org/333603002/diff/380001/components/translate/content/browser/data_file_browser_cld_data_provider.h#newcode45 components/translate/content/browser/data_file_browser_cld_data_provider.h:45: content::RenderViewHost* ...
6 years, 6 months ago (2014-06-23 13:54:43 UTC) #34
Andrew Hayden (chromium.org)
All comments, including renames and git cl format, are now addressed.
6 years, 6 months ago (2014-06-23 14:39:54 UTC) #35
Takashi Toyoshima
lgtm with one nit pick. Thank you for great works. https://codereview.chromium.org/333603002/diff/360001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/333603002/diff/360001/build/common.gypi#newcode2694 ...
6 years, 6 months ago (2014-06-24 02:09:48 UTC) #36
Andrew Hayden (chromium.org)
All nits addressed, time to CQ.
6 years, 6 months ago (2014-06-24 09:20:26 UTC) #37
Andrew Hayden (chromium.org)
The CQ bit was checked by andrewhayden@chromium.org
6 years, 6 months ago (2014-06-24 09:21:15 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/andrewhayden@chromium.org/333603002/530001
6 years, 6 months ago (2014-06-24 09:22:42 UTC) #39
Andrew Hayden (chromium.org)
The CQ bit was unchecked by andrewhayden@chromium.org
6 years, 6 months ago (2014-06-24 09:27:46 UTC) #40
Andrew Hayden (chromium.org)
On 2014/06/24 09:27:46, Andrew Hayden wrote: > The CQ bit was unchecked by mailto:andrewhayden@chromium.org Patch ...
6 years, 6 months ago (2014-06-24 09:30:23 UTC) #41
Andrew Hayden (chromium.org)
The CQ bit was checked by andrewhayden@chromium.org
6 years, 6 months ago (2014-06-24 09:30:39 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/andrewhayden@chromium.org/333603002/550001
6 years, 6 months ago (2014-06-24 09:31:45 UTC) #43
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_aosp on tryserver.chromium ...
6 years, 6 months ago (2014-06-24 10:27:40 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-24 10:29:56 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_dbg_simulator/builds/164402) ios_rel_device on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_rel_device/builds/153687) ios_rel_device_ninja ...
6 years, 6 months ago (2014-06-24 10:29:57 UTC) #46
Andrew Hayden (chromium.org)
Merge conflict from: https://codereview.chromium.org/326383005. I'm working on a pinned revision, let me sync against tip ...
6 years, 6 months ago (2014-06-24 10:58:00 UTC) #47
Andrew Hayden (chromium.org)
The CQ bit was checked by andrewhayden@chromium.org
6 years, 6 months ago (2014-06-24 11:09:25 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/andrewhayden@chromium.org/333603002/570001
6 years, 6 months ago (2014-06-24 11:11:03 UTC) #49
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_gpu_triggered_tests on tryserver.chromium.gpu ...
6 years, 6 months ago (2014-06-24 14:09:33 UTC) #50
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-24 15:14:56 UTC) #51
commit-bot: I haz the power
Try jobs failed on following builders: win_gpu_triggered_tests on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/win_gpu_triggered_tests/builds/21418)
6 years, 6 months ago (2014-06-24 15:14:57 UTC) #52
Andrew Hayden (chromium.org)
The CQ bit was checked by andrewhayden@chromium.org
6 years, 6 months ago (2014-06-24 15:33:37 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/andrewhayden@chromium.org/333603002/570001
6 years, 6 months ago (2014-06-24 15:34:15 UTC) #54
commit-bot: I haz the power
6 years, 6 months ago (2014-06-24 15:54:42 UTC) #55
Message was sent while issue was closed.
Change committed as 279415

Powered by Google App Engine
This is Rietveld 408576698