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

Issue 444543002: Add export to query for blacklisted-ness. (Closed)

Created:
6 years, 4 months ago by robertshield
Modified:
6 years, 1 month ago
Reviewers:
bdibello, Nico, csharp
CC:
chromium-reviews, caitkp+watch_chromium.org
Project:
chromium
Visibility:
Public.

Description

Add export to query for blacklisted-ness. BUG=394352 TEST=unit_tests Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=287899

Patch Set 1 : Tests #

Patch Set 2 : Pre-review cleanup. #

Total comments: 16

Patch Set 3 : Chris' feedback. #

Total comments: 4

Patch Set 4 : Dear Chris, #

Patch Set 5 : Add missing include. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+81 lines, -0 lines) Patch
M chrome/browser/chrome_elf_init_unittest_win.cc View 1 2 3 4 3 chunks +34 lines, -0 lines 0 comments Download
M chrome/browser/chrome_elf_init_win.h View 1 2 3 4 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/chrome_elf_init_win.cc View 1 2 3 4 2 chunks +23 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M chrome/unit_tests.isolate View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M chrome_elf/blacklist/blacklist.h View 1 chunk +4 lines, -0 lines 0 comments Download
M chrome_elf/blacklist/blacklist.cc View 1 2 3 4 1 chunk +8 lines, -0 lines 2 comments Download
M chrome_elf/chrome_elf.def View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (1 generated)
robertshield
Please take a look.
6 years, 4 months ago (2014-08-05 19:55:18 UTC) #1
csharp
https://codereview.chromium.org/444543002/diff/40001/chrome/browser/chrome_elf_init_unittest_win.cc File chrome/browser/chrome_elf_init_unittest_win.cc (right): https://codereview.chromium.org/444543002/diff/40001/chrome/browser/chrome_elf_init_unittest_win.cc#newcode212 chrome/browser/chrome_elf_init_unittest_win.cc:212: RetrieveBlacklistedModules(&module_names); Shouldn't this just return an empty list? Could ...
6 years, 4 months ago (2014-08-05 21:08:59 UTC) #2
robertshield
Thanks! PTAL https://codereview.chromium.org/444543002/diff/40001/chrome/browser/chrome_elf_init_unittest_win.cc File chrome/browser/chrome_elf_init_unittest_win.cc (right): https://codereview.chromium.org/444543002/diff/40001/chrome/browser/chrome_elf_init_unittest_win.cc#newcode212 chrome/browser/chrome_elf_init_unittest_win.cc:212: RetrieveBlacklistedModules(&module_names); On 2014/08/05 21:08:59, csharp wrote: > ...
6 years, 4 months ago (2014-08-06 16:38:32 UTC) #3
csharp
https://codereview.chromium.org/444543002/diff/60001/chrome/browser/chrome_elf_init_win.cc File chrome/browser/chrome_elf_init_win.cc (right): https://codereview.chromium.org/444543002/diff/60001/chrome/browser/chrome_elf_init_win.cc#newcode215 chrome/browser/chrome_elf_init_win.cc:215: std::set<ModuleInfo> module_info; nit: module_info -> module_info_set https://codereview.chromium.org/444543002/diff/60001/chrome/browser/chrome_elf_init_win.cc#newcode230 chrome/browser/chrome_elf_init_win.cc:230: return ...
6 years, 4 months ago (2014-08-06 17:52:57 UTC) #4
robertshield
Thanks! https://codereview.chromium.org/444543002/diff/60001/chrome/browser/chrome_elf_init_win.cc File chrome/browser/chrome_elf_init_win.cc (right): https://codereview.chromium.org/444543002/diff/60001/chrome/browser/chrome_elf_init_win.cc#newcode215 chrome/browser/chrome_elf_init_win.cc:215: std::set<ModuleInfo> module_info; On 2014/08/06 17:52:57, csharp wrote: > ...
6 years, 4 months ago (2014-08-06 17:54:49 UTC) #5
robertshield
Thanks!
6 years, 4 months ago (2014-08-06 17:54:50 UTC) #6
csharp
lgtm
6 years, 4 months ago (2014-08-06 17:55:50 UTC) #7
robertshield
The CQ bit was checked by robertshield@chromium.org
6 years, 4 months ago (2014-08-06 18:04:41 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/robertshield@chromium.org/444543002/80001
6 years, 4 months ago (2014-08-06 18:06:44 UTC) #9
robertshield
The CQ bit was checked by robertshield@chromium.org
6 years, 4 months ago (2014-08-06 19:47:40 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/robertshield@chromium.org/444543002/100001
6 years, 4 months ago (2014-08-06 19:49:23 UTC) #11
commit-bot: I haz the power
Change committed as 287899
6 years, 4 months ago (2014-08-06 23:38:59 UTC) #12
bdibello
I think this may have the wrong bug ID.
6 years, 4 months ago (2014-08-07 09:16:08 UTC) #13
robertshield
On 2014/08/07 09:16:08, bdibello wrote: > I think this may have the wrong bug ID. ...
6 years, 4 months ago (2014-08-07 11:49:34 UTC) #14
Nico
https://codereview.chromium.org/444543002/diff/100001/chrome_elf/blacklist/blacklist.cc File chrome_elf/blacklist/blacklist.cc (right): https://codereview.chromium.org/444543002/diff/100001/chrome_elf/blacklist/blacklist.cc#newcode234 chrome_elf/blacklist/blacklist.cc:234: for (int i = 0; i < kTroublesomeDllsMaxCount, g_troublesome_dlls[i]; ...
6 years, 1 month ago (2014-10-28 02:55:47 UTC) #16
robertshield
6 years, 1 month ago (2014-10-28 03:27:30 UTC) #17
Message was sent while issue was closed.
https://codereview.chromium.org/444543002/diff/100001/chrome_elf/blacklist/bl...
File chrome_elf/blacklist/blacklist.cc (right):

https://codereview.chromium.org/444543002/diff/100001/chrome_elf/blacklist/bl...
chrome_elf/blacklist/blacklist.cc:234: for (int i = 0; i <
kTroublesomeDllsMaxCount, g_troublesome_dlls[i]; ++i) {
On 2014/10/28 02:55:47, Nico wrote:
> you mean &&, not ,

indeed! fixed with https://codereview.chromium.org/678193003/

Powered by Google App Engine
This is Rietveld 408576698