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

Issue 200473002: Move all callers of GetHomeDir() to PathService::Get(base::DIR_HOME). (Closed)

Created:
6 years, 9 months ago by Nikita (slow)
Modified:
6 years, 7 months ago
CC:
chromium-reviews, erikwright+watch_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, oshima+watch_chromium.org, nkostylev+watch_chromium.org
Visibility:
Public.

Description

Move all callers of GetHomeDir() to PathService::Get(base::DIR_HOME). * Fixes GetHomeDir() for multi-profiles case on Chrome OS. * Once user signs in on Chrome OS base::DIR_HOME is overridden with primary user homedir. * Added content switch --homedir to pass that information to ppapi plugins since they run in a separate process and previous base::DIR_HOME override does not apply there. This fix doesn't require checking for --multi-profiles switch since user_id hash is known even without it. Note: download_prefs.cc still uses GetHomeDir() in its DownloadPathIsDangerous() check. // Consider downloads 'dangerous' if they go to the home directory on Linux and // to the desktop on any platform. In this context correct behavior is to use "real" base::GetHomeDir() and not "virtual one" base::DIR_HOME. Since latter is remapped to some test dir in tests, in some subfolders in Chrome OS etc. BUG=331530 TBR=vitalybuka@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=270872 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=272898

Patch Set 1 #

Patch Set 2 : cleanup #

Total comments: 2

Patch Set 3 : cleanup #

Patch Set 4 : . #

Patch Set 5 : switch GetHomeDir() calls to PathService::Get(chrome::DIR_USER_DATA) #

Patch Set 6 : use base::DIR_HOME #

Patch Set 7 : . #

Total comments: 2

Patch Set 8 : pass homedir switch to ppapi plugin #

Patch Set 9 : cleanup #

Total comments: 4

Patch Set 10 : Call PathService::Override() in PpapiPluginMain #

Patch Set 11 : add cmdline switch parsing to ContentMainRunnerImpl::Initialize() #

Patch Set 12 : cleanup #

Patch Set 13 : rebase #

Patch Set 14 : don't override chrome::DIR_USER_DATA #

Patch Set 15 : rebase #

Patch Set 16 : fix non-cros compile #

Patch Set 17 : rebase #

Patch Set 18 : rebase #

Patch Set 19 : Check for absolute path in PathService #

Patch Set 20 : fix linux build #

Patch Set 21 : rebase #

Patch Set 22 : fix cros unit_tests #

Patch Set 23 : rebase #

Patch Set 24 : rebase #

Patch Set 25 : rebase #

Patch Set 26 : Move subprocess homedir override to ChromeContentBrowserClient/ChromeMainDelegate #

Total comments: 4

Patch Set 27 : rebase #

Patch Set 28 : rebase #

Patch Set 29 : rebase #

Patch Set 30 : fix FileSystemApiTest.FileSystemApiOpenDirectoryOnGraylistAndAllowTest #

Patch Set 31 : proper fix for FileSystemApiTest.FileSystemApiOpenDirectoryOnGraylistAndAllowTest #

Patch Set 32 : temporary use GetHomeDir in xdg_util.cc to investigate PolicyPrefIndicatorTest failure (DownloadDir policy) #

Patch Set 33 : use GetHomeDir() in GetXDGUserDirectory #

Patch Set 34 : revert changes in GetUserDownloadsDirectorySafe #

Patch Set 35 : added stack trace for kDownloadDefaultDirectory, using base::GetHomeDir() in GetUserDownloadsDirect… #

Patch Set 36 : added stack trace for kDownloadDefaultDirectory, using base::DIR_HOME in GetUserDownloadsDir #

Patch Set 37 : Use GetHomeDir() in download_prefs.cc #

Patch Set 38 : Use base::HOME_DIR in download_prefs.cc #

Patch Set 39 : rebase, revert debug changes in preferences.cc, revert all changes in download_prefs.cc #

Patch Set 40 : rebase #

Patch Set 41 : rebase #

Patch Set 42 : rebase #

Patch Set 43 : rebase #

Patch Set 44 : rebase #

Patch Set 45 : rebase + extra logging #

Patch Set 46 : properly override DIR_HOME in DiagnosticsControllerTest setup #

Patch Set 47 : cleanup #

Unified diffs Side-by-side diffs Delta from patch set Stats (+121 lines, -41 lines) Patch
M base/file_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +1 line, -0 lines 0 comments Download
M base/file_util_posix.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 +6 lines, -2 lines 0 comments Download
M base/nix/xdg_util.cc View 1 2 3 4 5 6 30 31 32 33 3 chunks +9 lines, -4 lines 0 comments Download
M chrome/app/chrome_main_delegate.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 30 31 32 2 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 1 chunk +8 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/login/login_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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 3 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/login/users/user_manager_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 4 chunks +13 lines, -0 lines 0 comments Download
M chrome/browser/diagnostics/diagnostics_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 4 chunks +5 lines, -14 lines 0 comments Download
M chrome/browser/diagnostics/sqlite_diagnostics.cc View 1 2 3 4 5 45 46 2 chunks +5 lines, -2 lines 0 comments Download
M chrome/common/chrome_paths_linux.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 34 35 36 3 chunks +6 lines, -2 lines 0 comments Download
M chrome/common/chrome_paths_unittest.cc View 1 2 3 4 5 2 chunks +3 lines, -1 line 0 comments Download
M chrome/common/importer/firefox_importer_utils_linux.cc View 1 2 3 4 5 1 chunk +5 lines, -1 line 0 comments Download
M chrome/test/data/extensions/api_test/file_system/open_directory/test.js 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 30 31 32 1 chunk +11 lines, -3 lines 0 comments Download
M chromeos/chromeos_switches.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 1 chunk +1 line, -0 lines 0 comments Download
M chromeos/chromeos_switches.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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 1 chunk +3 lines, -0 lines 0 comments Download
M content/ppapi_plugin/ppapi_plugin_main.cc View 1 2 3 4 5 8 9 10 11 12 13 14 15 16 17 18 2 chunks +6 lines, -1 line 0 comments Download
M crypto/nss_util.cc View 1 2 3 4 5 3 chunks +4 lines, -1 line 0 comments Download
M printing/backend/cups_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 24 25 26 27 2 chunks +5 lines, -2 lines 0 comments Download
M remoting/host/branding.cc View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M remoting/host/setup/daemon_controller_delegate_linux.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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 3 chunks +5 lines, -2 lines 0 comments Download
M rlz/chromeos/lib/rlz_value_store_chromeos.cc View 1 2 3 4 5 2 chunks +8 lines, -2 lines 0 comments Download

Messages

Total messages: 85 (0 generated)
Nikita (slow)
6 years, 9 months ago (2014-03-14 16:32:11 UTC) #1
Dmitry Polukhin
https://codereview.chromium.org/200473002/diff/20001/base/file_util.h File base/file_util.h (right): https://codereview.chromium.org/200473002/diff/20001/base/file_util.h#newcode235 base/file_util.h:235: BASE_EXPORT void SetPrimaryUserIdHash(std::string user_id_hash); I think we can use ...
6 years, 9 months ago (2014-03-14 16:35:25 UTC) #2
Nikita (slow)
https://codereview.chromium.org/200473002/diff/20001/base/file_util.h File base/file_util.h (right): https://codereview.chromium.org/200473002/diff/20001/base/file_util.h#newcode235 base/file_util.h:235: BASE_EXPORT void SetPrimaryUserIdHash(std::string user_id_hash); On 2014/03/14 16:35:25, Dmitry Polukhin ...
6 years, 9 months ago (2014-03-14 16:39:52 UTC) #3
Nikita (slow)
+brettw@ for base/*
6 years, 9 months ago (2014-03-14 16:42:11 UTC) #4
Dmitry Polukhin
lgtm
6 years, 9 months ago (2014-03-14 16:44:40 UTC) #5
brettw
This whole situation seems really regrettable. I don't think we should be doing this kind ...
6 years, 9 months ago (2014-03-14 18:22:27 UTC) #6
Nikita (slow)
Brett, I would be interested in getting your suggestions. Thing is that user home directory ...
6 years, 9 months ago (2014-03-14 18:58:27 UTC) #7
brettw
It looks like PathService::Override does what you want (sets the value to something you want, ...
6 years, 9 months ago (2014-03-14 19:51:38 UTC) #8
Nikita (slow)
Brett, please take a look.
6 years, 9 months ago (2014-03-17 18:05:30 UTC) #9
Dmitry Polukhin
https://codereview.chromium.org/200473002/diff/110001/base/file_util_posix.cc File base/file_util_posix.cc (right): https://codereview.chromium.org/200473002/diff/110001/base/file_util_posix.cc#newcode491 base/file_util_posix.cc:491: return FilePath("/tmp"); I think it is bad idea to ...
6 years, 9 months ago (2014-03-17 18:28:29 UTC) #10
Nikita (slow)
+Will, please see latest comment from Dmitry. Do you agree that using root / as ...
6 years, 9 months ago (2014-03-18 14:15:24 UTC) #11
Nikita (slow)
Made additional changes in the way how ppapi plugin gets information about homedir (passed as ...
6 years, 9 months ago (2014-03-18 14:51:02 UTC) #12
brettw
Wait, why do we need this command line switch for the PPAPI process? Can we ...
6 years, 9 months ago (2014-03-18 19:30:25 UTC) #13
Nikita (slow)
When this ppapi process starts since it is not the usual main Chrome browser process ...
6 years, 9 months ago (2014-03-18 21:04:08 UTC) #14
brettw
On 2014/03/18 21:04:08, Nikita Kostylev wrote: > When this ppapi process starts since it is ...
6 years, 9 months ago (2014-03-18 21:06:56 UTC) #15
Nikita (slow)
On 2014/03/18 21:06:56, brettw wrote: > On 2014/03/18 21:04:08, Nikita Kostylev wrote: > > When ...
6 years, 9 months ago (2014-03-19 04:08:22 UTC) #16
brettw
It seems suspicious to me that the subprocesses should all be in charge of doing ...
6 years, 9 months ago (2014-03-19 21:03:46 UTC) #17
Nikita (slow)
On 2014/03/19 21:03:46, brettw wrote: > It seems suspicious to me that the subprocesses should ...
6 years, 9 months ago (2014-03-20 12:20:32 UTC) #18
Nikita (slow)
New code is only in content/app/content_main_runner.cc The rest is rebase.
6 years, 9 months ago (2014-03-20 12:37:32 UTC) #19
Nikita (slow)
Brett, please take a look. See also my previous comments on why I need code ...
6 years, 9 months ago (2014-03-24 06:47:31 UTC) #20
brettw
On 2014/03/20 12:20:32, Nikita Kostylev wrote: > On 2014/03/19 21:03:46, brettw wrote: > > It ...
6 years, 9 months ago (2014-03-25 19:40:49 UTC) #21
Nikita (slow)
On 2014/03/25 19:40:49, brettw wrote: > On 2014/03/20 12:20:32, Nikita Kostylev wrote: > > On ...
6 years, 9 months ago (2014-03-26 09:54:08 UTC) #22
brettw
It seems like this should be a supported use-case for the path service, as anything ...
6 years, 9 months ago (2014-03-26 17:12:27 UTC) #23
Nikita (slow)
On 2014/03/26 17:12:27, brettw wrote: > It seems like this should be a supported use-case ...
6 years, 9 months ago (2014-03-26 17:38:51 UTC) #24
Nikita (slow)
On 2014/03/26 17:12:27, brettw wrote: > It seems like this should be a supported use-case ...
6 years, 8 months ago (2014-04-03 10:55:53 UTC) #25
Nikita (slow)
On 2014/04/03 10:55:53, Nikita Kostylev wrote: > On 2014/03/26 17:12:27, brettw wrote: > > It ...
6 years, 8 months ago (2014-04-08 14:29:22 UTC) #26
Nikita (slow)
Dmitry, can you please take another look as well?
6 years, 8 months ago (2014-04-08 15:19:26 UTC) #27
Will Drewry
A couple of questions that likely just show my misunderstanding and one comment on the ...
6 years, 8 months ago (2014-04-08 15:55:04 UTC) #28
Nikita (slow)
https://codereview.chromium.org/200473002/diff/140001/chrome/browser/chromeos/login/user_manager_impl.cc File chrome/browser/chromeos/login/user_manager_impl.cc (right): https://codereview.chromium.org/200473002/diff/140001/chrome/browser/chromeos/login/user_manager_impl.cc#newcode1516 chrome/browser/chromeos/login/user_manager_impl.cc:1516: PathService::Override(base::DIR_HOME, homedir); On 2014/04/08 15:55:04, Will Drewry wrote: > ...
6 years, 8 months ago (2014-04-08 16:40:08 UTC) #29
Dmitry Polukhin
LGTM
6 years, 8 months ago (2014-04-08 21:11:19 UTC) #30
brettw
LGTM for base. I was kind of hoping GetHomeDir as a standalone function could be ...
6 years, 8 months ago (2014-04-10 20:15:21 UTC) #31
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 8 months ago (2014-04-11 13:03:07 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/430001
6 years, 8 months ago (2014-04-11 13:03:26 UTC) #33
Nikita (slow)
On 2014/04/10 20:15:21, brettw wrote: > I've taken too long on this review. If you ...
6 years, 8 months ago (2014-04-11 13:06:34 UTC) #34
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-11 13:46:49 UTC) #35
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=60934
6 years, 8 months ago (2014-04-11 13:46:50 UTC) #36
Nikita (slow)
OWNERS review: cpu@ for chrome/browser/diagnostics/* rdsmith@ for chrome/browser/download/* jam@ for chrome/common/* and chrome/common/importer/* wtc@ for ...
6 years, 8 months ago (2014-04-11 14:50:28 UTC) #37
Roger Tawa OOO till Jul 10th
rlz lgtm
6 years, 8 months ago (2014-04-11 15:55:54 UTC) #38
cpu_(ooo_6.6-7.5)
lgtm
6 years, 8 months ago (2014-04-11 17:03:33 UTC) #39
Randy Smith (Not in Mondays)
lgtm
6 years, 8 months ago (2014-04-11 17:18:05 UTC) #40
Sergey Ulanov
remoting LGTM
6 years, 8 months ago (2014-04-11 17:35:50 UTC) #41
jam
it seems like a layering violation that content is setting something for chromeos to support ...
6 years, 8 months ago (2014-04-11 17:44:57 UTC) #42
Nikita (slow)
On 2014/04/11 17:44:57, jam wrote: > it seems like a layering violation that content is ...
6 years, 8 months ago (2014-04-18 16:09:41 UTC) #43
Nikita (slow)
TBR'ing: wtc@ for crypto/* vitalybuka@ for printing/*
6 years, 8 months ago (2014-04-18 16:12:37 UTC) #44
jam
On 2014/04/18 16:09:41, Nikita Kostylev wrote: > On 2014/04/11 17:44:57, jam wrote: > > it ...
6 years, 8 months ago (2014-04-21 07:27:13 UTC) #45
Nikita (slow)
On 2014/04/21 07:27:13, jam wrote: > I was thinking in the constructor of ChromeContentClient. Now ...
6 years, 8 months ago (2014-04-21 17:18:23 UTC) #46
jam
lgtm
6 years, 8 months ago (2014-04-22 15:21:19 UTC) #47
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 8 months ago (2014-04-22 15:27:24 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/500001
6 years, 8 months ago (2014-04-22 15:28:57 UTC) #49
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-22 16:47:31 UTC) #50
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel
6 years, 8 months ago (2014-04-22 16:47:31 UTC) #51
wtc
Patch set 26 LGTM. https://codereview.chromium.org/200473002/diff/500001/base/file_util.h File base/file_util.h (right): https://codereview.chromium.org/200473002/diff/500001/base/file_util.h#newcode219 base/file_util.h:219: // Path service may as ...
6 years, 8 months ago (2014-04-22 22:26:54 UTC) #52
Nikita (slow)
https://codereview.chromium.org/200473002/diff/500001/base/file_util.h File base/file_util.h (right): https://codereview.chromium.org/200473002/diff/500001/base/file_util.h#newcode219 base/file_util.h:219: // Path service may as well override DIR_HOME. On ...
6 years, 8 months ago (2014-04-23 04:48:07 UTC) #53
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-04-29 11:16:23 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/540001
6 years, 7 months ago (2014-04-29 11:16:40 UTC) #55
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-04-29 11:53:10 UTC) #56
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium
6 years, 7 months ago (2014-04-29 11:53:10 UTC) #57
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-04-29 12:13:05 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/540001
6 years, 7 months ago (2014-04-29 12:13:11 UTC) #59
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-04-29 12:19:39 UTC) #60
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel on tryserver.chromium
6 years, 7 months ago (2014-04-29 12:19:40 UTC) #61
Nikita (slow)
+sammc@ for changes in chrome/test/data/extensions/api_test/file_system/open_directory/test.js Comment in test pretty much summarizes it. My change eliminates ...
6 years, 7 months ago (2014-05-13 14:27:13 UTC) #62
Nikita (slow)
See https://docs.google.com/a/google.com/document/d/1WIWU3JPgTtuT5VGFwrTECUr3uRb4GL-8ufmnEFH26s8/edit which has stack trace and some debug info.
6 years, 7 months ago (2014-05-13 14:27:42 UTC) #63
Sam McNally
chrome/test/data/extensions/api_test/file_system/open_directory/test.js lgtm
6 years, 7 months ago (2014-05-13 16:53:32 UTC) #64
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-15 15:35:52 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/770001
6 years, 7 months ago (2014-05-15 15:38:17 UTC) #66
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-15 19:46:27 UTC) #67
commit-bot: I haz the power
Failed to apply patch for chromeos/chromeos_switches.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 7 months ago (2014-05-15 19:46:28 UTC) #68
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-15 20:01:55 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/790001
6 years, 7 months ago (2014-05-15 20:03:34 UTC) #70
commit-bot: I haz the power
Change committed as 270872
6 years, 7 months ago (2014-05-16 00:20:38 UTC) #71
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-26 10:12:05 UTC) #72
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/950001
6 years, 7 months ago (2014-05-26 10:12:19 UTC) #73
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-26 12:12:58 UTC) #74
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-26 12:19:26 UTC) #75
commit-bot: I haz the power
Try jobs failed on following builders: android_aosp on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_aosp/builds/77626)
6 years, 7 months ago (2014-05-26 12:19:27 UTC) #76
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-26 12:20:20 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/950001
6 years, 7 months ago (2014-05-26 12:20:54 UTC) #78
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-26 12:46:12 UTC) #79
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-26 19:17:36 UTC) #80
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/950001
6 years, 7 months ago (2014-05-26 19:18:17 UTC) #81
Nikita (slow)
The CQ bit was unchecked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-26 19:18:36 UTC) #82
Nikita (slow)
The CQ bit was checked by nkostylev@chromium.org
6 years, 7 months ago (2014-05-26 19:19:05 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nkostylev@chromium.org/200473002/950001
6 years, 7 months ago (2014-05-26 19:19:27 UTC) #84
commit-bot: I haz the power
6 years, 7 months ago (2014-05-27 00:12:36 UTC) #85
Message was sent while issue was closed.
Change committed as 272898

Powered by Google App Engine
This is Rietveld 408576698