diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 03:58:42 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 03:58:42 +0000 |
commit | 09b13b8b62d62e47da1021b09e929d626283c447 (patch) | |
tree | 3e26c9b4afed55555e31fdc1297482e040b170a4 | |
parent | c6ff35ee812497a94f9fdd6a1d46e0a5028f69c5 (diff) | |
download | chromium_src-09b13b8b62d62e47da1021b09e929d626283c447.zip chromium_src-09b13b8b62d62e47da1021b09e929d626283c447.tar.gz chromium_src-09b13b8b62d62e47da1021b09e929d626283c447.tar.bz2 |
Remove a TODO to convert bool failed, bool failure_ignored to an enum.
(This was a TODO for phajdan.jr).
BUG=None
TEST=trybots
TBR=phajdan.jr@chromium.org
Review URL: http://codereview.chromium.org/6177006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71292 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/test/out_of_proc_test_runner.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/test/out_of_proc_test_runner.cc b/chrome/test/out_of_proc_test_runner.cc index 1d2bb10..4d70e17 100644 --- a/chrome/test/out_of_proc_test_runner.cc +++ b/chrome/test/out_of_proc_test_runner.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -90,7 +90,6 @@ class ResultsPrinter { void OnTestCaseStart(const char* name, int test_count) const; void OnTestCaseEnd() const; - // TODO(phajdan.jr): Convert bool failed, bool failure_ignored to an enum. void OnTestEnd(const char* name, const char* case_name, bool run, bool failed, bool failure_ignored, double elapsed_time) const; private: |