Commit c443fe4e authored by thakis@chromium.org's avatar thakis@chromium.org

Remove 2 pointless NULL checks.

These two functions are normal functions these days and can't be NULL.

BUG=none
TEST=none


Review URL: http://codereview.chromium.org/8802029

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113145 0039d316-1c4b-4281-b951-d872f2087c98
parent 47fc70c1
......@@ -176,10 +176,8 @@ void SetNumberOfViews(int number_of_views) {
}
void SetCommandLine(const CommandLine* command_line) {
DCHECK(SetCrashKeyValue);
DCHECK(ClearCrashKey);
DCHECK(command_line);
if (!command_line || !SetCrashKeyValue || !ClearCrashKey)
if (!command_line)
return;
// These should match the corresponding strings in breakpad_win.cc.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment