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

Issue 9979001: Attempt to load component extension favicon from the resources first. (Closed)

Created:
8 years, 8 months ago by dgozman
Modified:
8 years, 8 months ago
CC:
chromium-reviews, Aaron Boodman, mihaip+watch_chromium.org
Visibility:
Public.

Description

Attempt to load component extension favicon from the resources first. Special handling of CWS icon. Also correctly handle URL rewrites in favicon requests. BUG=chromium-os:28314, chromium:120471 TEST=Observe the right favicon for CWS and FileManager component extension. Bookmark them and see the right favicon. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=133657

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Total comments: 2

Patch Set 5 : #

Total comments: 4

Patch Set 6 : #

Total comments: 6

Patch Set 7 : #

Total comments: 4

Patch Set 8 : Codestyle fixes. #

Patch Set 9 : #

Total comments: 12

Patch Set 10 : #

Patch Set 11 : Restricted one test to ChromeOS platform. #

Patch Set 12 : Another guard in test. #

Patch Set 13 : #

Patch Set 14 : Moved CWS check earlier. #

Patch Set 15 : Fixed ExplicitTest. #

Patch Set 16 : Merge #

Unified diffs Side-by-side diffs Delta from patch set Stats (+167 lines, -43 lines) Patch
M chrome/browser/extensions/extension_icon_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +42 lines, -0 lines 0 comments Download
M chrome/browser/extensions/image_loading_tracker.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/extensions/image_loading_tracker.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +66 lines, -3 lines 0 comments Download
M chrome/browser/extensions/image_loading_tracker_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 8 chunks +32 lines, -6 lines 0 comments Download
M chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +10 lines, -4 lines 0 comments Download
M chrome/browser/ui/webui/extensions/extension_icon_source.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +0 lines, -6 lines 0 comments Download
M chrome/browser/ui/webui/extensions/extension_icon_source.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +0 lines, -24 lines 0 comments Download
A chrome/test/data/extensions/file_manager/app.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +6 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/file_manager/images/icon16.png View 1 2 3 4 5 6 7 8 Binary file 0 comments Download

Messages

Total messages: 420 (0 generated)
dgozman
May you have a look please?
8 years, 8 months ago (2012-04-04 13:35:10 UTC) #1
jstritar
ExtensionIconSource does pretty much the same thing. I wonder if this should just go in ...
8 years, 8 months ago (2012-04-04 16:14:51 UTC) #2
dgozman
Moved the code to ImageLoadingTracker. Please, take a look. James, you approval required for chrome/browser/ui/webui.
8 years, 8 months ago (2012-04-05 14:28:42 UTC) #3
James Hawkins
https://chromiumcodereview.appspot.com/9979001/diff/6005/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc File chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/6005/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc#newcode426 chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc:426: ExtensionWebUI::HandleChromeURLOverride(&url, profile); This needs an explanatory comment.
8 years, 8 months ago (2012-04-06 04:45:25 UTC) #4
dgozman
PTAL https://chromiumcodereview.appspot.com/9979001/diff/6005/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc File chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/6005/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc#newcode426 chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc:426: ExtensionWebUI::HandleChromeURLOverride(&url, profile); On 2012/04/06 04:45:25, James Hawkins wrote: ...
8 years, 8 months ago (2012-04-06 11:15:39 UTC) #5
James Hawkins
LGTM with nit. https://chromiumcodereview.appspot.com/9979001/diff/7003/chrome/browser/extensions/image_loading_tracker.h File chrome/browser/extensions/image_loading_tracker.h (right): https://chromiumcodereview.appspot.com/9979001/diff/7003/chrome/browser/extensions/image_loading_tracker.h#newcode128 chrome/browser/extensions/image_loading_tracker.h:128: SkBitmap *TryLoadingComponentExtensionImage( s/SkBitmap */SkBitmap* /
8 years, 8 months ago (2012-04-06 19:23:57 UTC) #6
Dmitry Polukhin
https://chromiumcodereview.appspot.com/9979001/diff/7003/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/7003/chrome/browser/extensions/image_loading_tracker.cc#newcode189 chrome/browser/extensions/image_loading_tracker.cc:189: // If we don't have a path we don't ...
8 years, 8 months ago (2012-04-09 11:15:55 UTC) #7
dgozman
Dmitry, Mihai, may you have a look please? https://chromiumcodereview.appspot.com/9979001/diff/7003/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/7003/chrome/browser/extensions/image_loading_tracker.cc#newcode189 chrome/browser/extensions/image_loading_tracker.cc:189: // ...
8 years, 8 months ago (2012-04-09 12:09:57 UTC) #8
Dmitry Polukhin
LGTM
8 years, 8 months ago (2012-04-09 12:15:47 UTC) #9
dgozman
Mihai, Finnur, Jon, May you look at chrome/browser/extensions/* please?
8 years, 8 months ago (2012-04-10 12:04:38 UTC) #10
Finnur
https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc#newcode209 chrome/browser/extensions/image_loading_tracker.cc:209: OnImageLoaded(from_resources, it->resource, it->max_size, id, false); You've selected in both ...
8 years, 8 months ago (2012-04-10 13:46:39 UTC) #11
dgozman
https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc#newcode209 chrome/browser/extensions/image_loading_tracker.cc:209: OnImageLoaded(from_resources, it->resource, it->max_size, id, false); On 2012/04/10 13:46:39, Finnur ...
8 years, 8 months ago (2012-04-10 14:19:48 UTC) #12
Finnur
https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc#newcode209 chrome/browser/extensions/image_loading_tracker.cc:209: OnImageLoaded(from_resources, it->resource, it->max_size, id, false); All the files this ...
8 years, 8 months ago (2012-04-10 14:32:20 UTC) #13
dgozman
Dmitry, Finnur, please take another look. https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/12001/chrome/browser/extensions/image_loading_tracker.cc#newcode209 chrome/browser/extensions/image_loading_tracker.cc:209: OnImageLoaded(from_resources, it->resource, it->max_size, ...
8 years, 8 months ago (2012-04-10 16:59:50 UTC) #14
Finnur
Much better. Couple of nits and wondering if you can add a test for the ...
8 years, 8 months ago (2012-04-11 10:03:09 UTC) #15
dgozman
Nits fixed. https://chromiumcodereview.appspot.com/9979001/diff/20001/chrome/browser/extensions/image_loading_tracker.cc File chrome/browser/extensions/image_loading_tracker.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/20001/chrome/browser/extensions/image_loading_tracker.cc#newcode245 chrome/browser/extensions/image_loading_tracker.cc:245: } On 2012/04/11 10:03:09, Finnur wrote: > ...
8 years, 8 months ago (2012-04-11 14:48:13 UTC) #16
dgozman
Tests added. Please take a look. https://chromiumcodereview.appspot.com/9979001/diff/27002/chrome/browser/extensions/extension_icon_manager_unittest.cc File chrome/browser/extensions/extension_icon_manager_unittest.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/27002/chrome/browser/extensions/extension_icon_manager_unittest.cc#newcode142 chrome/browser/extensions/extension_icon_manager_unittest.cc:142: TEST_F(ExtensionIconManagerTest, LoadComponentExtensionResource) { ...
8 years, 8 months ago (2012-04-11 16:53:53 UTC) #17
Finnur
LGTM, with nits. https://chromiumcodereview.appspot.com/9979001/diff/27002/chrome/browser/extensions/extension_icon_manager_unittest.cc File chrome/browser/extensions/extension_icon_manager_unittest.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/27002/chrome/browser/extensions/extension_icon_manager_unittest.cc#newcode148 chrome/browser/extensions/extension_icon_manager_unittest.cc:148: "extensions/file_manager/app.json"); nit: it might make sense, ...
8 years, 8 months ago (2012-04-11 17:38:13 UTC) #18
dgozman
Thanks for review. https://chromiumcodereview.appspot.com/9979001/diff/27002/chrome/browser/extensions/extension_icon_manager_unittest.cc File chrome/browser/extensions/extension_icon_manager_unittest.cc (right): https://chromiumcodereview.appspot.com/9979001/diff/27002/chrome/browser/extensions/extension_icon_manager_unittest.cc#newcode148 chrome/browser/extensions/extension_icon_manager_unittest.cc:148: "extensions/file_manager/app.json"); On 2012/04/11 17:38:13, Finnur wrote: ...
8 years, 8 months ago (2012-04-12 11:47:23 UTC) #19
Finnur
LGTM. There are some test failures on the try server (wonder why didn't it run ...
8 years, 8 months ago (2012-04-12 12:53:01 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:47:55 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:49:20 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:49:27 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:49:35 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:49:44 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:49:53 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:50:04 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:50:15 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:50:23 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:50:33 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:50:42 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:50:51 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:00 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:09 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:18 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:26 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:35 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:44 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:51:53 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:02 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:11 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:20 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:28 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:36 UTC) #44
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:47 UTC) #45
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:52:55 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:03 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:11 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:18 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:25 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:33 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:40 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:46 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:53:53 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:00 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:07 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:15 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:23 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:29 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:35 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:42 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:49 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:54:56 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:03 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:10 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:18 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:24 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:31 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:38 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:44 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:52 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:55:58 UTC) #72
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:04 UTC) #73
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:11 UTC) #74
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:18 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:25 UTC) #76
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:32 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:39 UTC) #78
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:46 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:56:53 UTC) #80
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:02 UTC) #81
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:13 UTC) #82
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:20 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:27 UTC) #84
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:33 UTC) #85
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:42 UTC) #86
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:57:53 UTC) #87
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:00 UTC) #88
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:07 UTC) #89
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:18 UTC) #90
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:24 UTC) #91
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:31 UTC) #92
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:39 UTC) #93
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:46 UTC) #94
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:58:54 UTC) #95
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:02 UTC) #96
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:08 UTC) #97
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:16 UTC) #98
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:24 UTC) #99
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:31 UTC) #100
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:38 UTC) #101
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:46 UTC) #102
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 14:59:56 UTC) #103
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:04 UTC) #104
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:11 UTC) #105
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:20 UTC) #106
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:27 UTC) #107
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:34 UTC) #108
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:41 UTC) #109
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:47 UTC) #110
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:00:54 UTC) #111
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:01:04 UTC) #112
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:01:11 UTC) #113
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:01:18 UTC) #114
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:01:39 UTC) #115
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:01:46 UTC) #116
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:01:53 UTC) #117
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:02 UTC) #118
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:09 UTC) #119
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:16 UTC) #120
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:23 UTC) #121
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:29 UTC) #122
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:35 UTC) #123
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:42 UTC) #124
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:49 UTC) #125
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:02:56 UTC) #126
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:05 UTC) #127
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:12 UTC) #128
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:29 UTC) #129
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:36 UTC) #130
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:44 UTC) #131
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:52 UTC) #132
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:03:59 UTC) #133
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:06 UTC) #134
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:14 UTC) #135
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:22 UTC) #136
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:30 UTC) #137
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:41 UTC) #138
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:49 UTC) #139
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:04:58 UTC) #140
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:04 UTC) #141
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:14 UTC) #142
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:22 UTC) #143
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:28 UTC) #144
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:35 UTC) #145
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:51 UTC) #146
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:05:59 UTC) #147
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:06 UTC) #148
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:13 UTC) #149
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:21 UTC) #150
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:28 UTC) #151
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:34 UTC) #152
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:41 UTC) #153
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:48 UTC) #154
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:06:54 UTC) #155
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:01 UTC) #156
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:08 UTC) #157
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:15 UTC) #158
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:23 UTC) #159
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:30 UTC) #160
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:37 UTC) #161
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:07:45 UTC) #162
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:00 UTC) #163
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:09 UTC) #164
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:19 UTC) #165
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:25 UTC) #166
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:33 UTC) #167
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:43 UTC) #168
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:50 UTC) #169
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:08:57 UTC) #170
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:04 UTC) #171
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:15 UTC) #172
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:26 UTC) #173
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:33 UTC) #174
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:39 UTC) #175
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:46 UTC) #176
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:09:54 UTC) #177
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:01 UTC) #178
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:09 UTC) #179
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:17 UTC) #180
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:26 UTC) #181
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:33 UTC) #182
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:40 UTC) #183
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:47 UTC) #184
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:10:54 UTC) #185
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:02 UTC) #186
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:13 UTC) #187
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:20 UTC) #188
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:27 UTC) #189
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:37 UTC) #190
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:43 UTC) #191
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:49 UTC) #192
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:11:59 UTC) #193
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:12:09 UTC) #194
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:12:19 UTC) #195
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:12:26 UTC) #196
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:12:33 UTC) #197
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:12:44 UTC) #198
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:12:51 UTC) #199
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:00 UTC) #200
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:07 UTC) #201
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:16 UTC) #202
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:30 UTC) #203
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:36 UTC) #204
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:43 UTC) #205
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:50 UTC) #206
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:13:58 UTC) #207
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:05 UTC) #208
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:12 UTC) #209
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:19 UTC) #210
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:27 UTC) #211
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:34 UTC) #212
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:41 UTC) #213
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:14:52 UTC) #214
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:00 UTC) #215
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:07 UTC) #216
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:15 UTC) #217
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:21 UTC) #218
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:28 UTC) #219
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:35 UTC) #220
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:15:42 UTC) #221
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:06 UTC) #222
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:15 UTC) #223
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:22 UTC) #224
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:28 UTC) #225
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:35 UTC) #226
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:42 UTC) #227
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:49 UTC) #228
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:16:56 UTC) #229
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:03 UTC) #230
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:13 UTC) #231
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:20 UTC) #232
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:27 UTC) #233
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:34 UTC) #234
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:42 UTC) #235
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:49 UTC) #236
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:17:57 UTC) #237
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:09 UTC) #238
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:17 UTC) #239
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:24 UTC) #240
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:31 UTC) #241
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:38 UTC) #242
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:45 UTC) #243
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:18:51 UTC) #244
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:00 UTC) #245
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:07 UTC) #246
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:14 UTC) #247
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:22 UTC) #248
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:29 UTC) #249
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:37 UTC) #250
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:44 UTC) #251
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:51 UTC) #252
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:19:58 UTC) #253
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:06 UTC) #254
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:15 UTC) #255
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:23 UTC) #256
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:30 UTC) #257
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:38 UTC) #258
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:46 UTC) #259
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:20:54 UTC) #260
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:03 UTC) #261
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:11 UTC) #262
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:20 UTC) #263
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:30 UTC) #264
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:39 UTC) #265
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:47 UTC) #266
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:21:56 UTC) #267
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:05 UTC) #268
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:15 UTC) #269
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:26 UTC) #270
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:34 UTC) #271
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:41 UTC) #272
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:48 UTC) #273
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:22:55 UTC) #274
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:02 UTC) #275
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:09 UTC) #276
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:17 UTC) #277
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:24 UTC) #278
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:32 UTC) #279
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:39 UTC) #280
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:47 UTC) #281
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:23:54 UTC) #282
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:07 UTC) #283
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:14 UTC) #284
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:22 UTC) #285
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:31 UTC) #286
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:37 UTC) #287
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:44 UTC) #288
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:51 UTC) #289
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:24:58 UTC) #290
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:06 UTC) #291
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:12 UTC) #292
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:20 UTC) #293
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:28 UTC) #294
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:38 UTC) #295
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:45 UTC) #296
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:25:52 UTC) #297
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:02 UTC) #298
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:09 UTC) #299
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:16 UTC) #300
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:26 UTC) #301
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:32 UTC) #302
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:38 UTC) #303
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:48 UTC) #304
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:26:55 UTC) #305
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:01 UTC) #306
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:07 UTC) #307
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:16 UTC) #308
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:22 UTC) #309
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:28 UTC) #310
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:35 UTC) #311
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:42 UTC) #312
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:48 UTC) #313
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:27:54 UTC) #314
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:00 UTC) #315
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:07 UTC) #316
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:15 UTC) #317
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:22 UTC) #318
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:30 UTC) #319
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:40 UTC) #320
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:47 UTC) #321
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:28:54 UTC) #322
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:00 UTC) #323
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:06 UTC) #324
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:15 UTC) #325
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:22 UTC) #326
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:29 UTC) #327
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:36 UTC) #328
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:43 UTC) #329
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:50 UTC) #330
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:29:56 UTC) #331
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:03 UTC) #332
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:10 UTC) #333
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:18 UTC) #334
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:25 UTC) #335
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:32 UTC) #336
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:39 UTC) #337
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:47 UTC) #338
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:30:54 UTC) #339
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:01 UTC) #340
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:08 UTC) #341
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:15 UTC) #342
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:22 UTC) #343
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:28 UTC) #344
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:35 UTC) #345
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:42 UTC) #346
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:49 UTC) #347
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:31:55 UTC) #348
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:02 UTC) #349
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:09 UTC) #350
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:15 UTC) #351
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:22 UTC) #352
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:28 UTC) #353
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:35 UTC) #354
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:41 UTC) #355
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:48 UTC) #356
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:32:55 UTC) #357
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:02 UTC) #358
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:09 UTC) #359
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:16 UTC) #360
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:23 UTC) #361
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:30 UTC) #362
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:36 UTC) #363
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:43 UTC) #364
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:50 UTC) #365
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:33:59 UTC) #366
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:06 UTC) #367
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:16 UTC) #368
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:23 UTC) #369
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:30 UTC) #370
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:37 UTC) #371
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:45 UTC) #372
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:34:52 UTC) #373
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:00 UTC) #374
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:07 UTC) #375
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:14 UTC) #376
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:22 UTC) #377
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:29 UTC) #378
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:36 UTC) #379
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:44 UTC) #380
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:52 UTC) #381
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:35:59 UTC) #382
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:06 UTC) #383
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:16 UTC) #384
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:23 UTC) #385
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:30 UTC) #386
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:37 UTC) #387
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:44 UTC) #388
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:51 UTC) #389
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:36:58 UTC) #390
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:05 UTC) #391
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:12 UTC) #392
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:19 UTC) #393
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:26 UTC) #394
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:33 UTC) #395
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:40 UTC) #396
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:46 UTC) #397
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:37:53 UTC) #398
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:01 UTC) #399
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:09 UTC) #400
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:16 UTC) #401
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:23 UTC) #402
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:29 UTC) #403
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:35 UTC) #404
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:42 UTC) #405
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:49 UTC) #406
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:38:56 UTC) #407
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:02 UTC) #408
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:09 UTC) #409
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:16 UTC) #410
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:23 UTC) #411
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:30 UTC) #412
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:37 UTC) #413
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:44 UTC) #414
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:51 UTC) #415
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:39:57 UTC) #416
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:40:04 UTC) #417
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgozman@chromium.org/9979001/36001
8 years, 8 months ago (2012-04-13 15:40:12 UTC) #418
M-A Ruel
On 2012/04/13 15:40:04, I haz the power (commit-bot) wrote: > CQ is trying da patch. ...
8 years, 8 months ago (2012-04-13 15:40:55 UTC) #419
dgozman
8 years, 8 months ago (2012-04-13 15:51:29 UTC) #420
Hi,

Never seen this behavior before.
I remember another problem: files were not uploaded and so tests were
failing (or even not compiling).

Thanks,
Dmitry

On Fri, Apr 13, 2012 at 7:40 PM, <maruel@chromium.org> wrote:

> On 2012/04/13 15:40:04, I haz the power (commit-bot) wrote:
>
>> CQ is trying da patch. Follow status at
>> https://chromium-status.**appspot.com/cq/dgozman%**
>>
40chromium.org/9979001/36001<https://chromium-status.appspot.com/cq/dgozman%40chromium.org/9979001/36001>
>>
>
> As you may have realized by now, the CQ has issues with binary files.
>
>
http://codereview.chromium.**org/9979001/<http://codereview.chromium.org/9979...
>

Powered by Google App Engine
This is Rietveld 408576698