diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-19 16:17:06 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-19 16:17:06 +0000 |
commit | 70e44ab0524aae2dc311d231d4072e78bd91da17 (patch) | |
tree | 4c1ae5a4aa80360678b5707404b8e54dcac4b452 /chrome_elf/blacklist | |
parent | 63d1d611219e18819b98de9662dcdfff69fcdfb0 (diff) | |
download | chromium_src-70e44ab0524aae2dc311d231d4072e78bd91da17.zip chromium_src-70e44ab0524aae2dc311d231d4072e78bd91da17.tar.gz chromium_src-70e44ab0524aae2dc311d231d4072e78bd91da17.tar.bz2 |
Report when blacklist.cc fails to setup the blacklisting thunk.
BUG=
Review URL: https://codereview.chromium.org/343613003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278393 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_elf/blacklist')
-rw-r--r-- | chrome_elf/blacklist/blacklist.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_elf/blacklist/blacklist.cc b/chrome_elf/blacklist/blacklist.cc index ba544e25..d0770d4 100644 --- a/chrome_elf/blacklist/blacklist.cc +++ b/chrome_elf/blacklist/blacklist.cc @@ -197,9 +197,9 @@ bool ResetBeacon() { return false; } - // Reaching this point with the setup running state means the setup - // succeeded and so we reset to enabled. Any other state indicates that setup - // was skipped; in that case we leave the state alone for later recording. + // Reaching this point with the setup running state means the setup did not + // crash, so we reset to enabled. Any other state indicates that setup was + // skipped; in that case we leave the state alone for later recording. if (blacklist_state == BLACKLIST_SETUP_RUNNING) result = SetDWValue(&key, kBeaconState, BLACKLIST_ENABLED); |