diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 17:11:36 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 17:11:36 +0000 |
commit | f4e70625da7c32545fce89e38df9c0a4d93d79a2 (patch) | |
tree | 7080d795c454d5111c3257c8f7999c900beeb1d9 /chrome/installer | |
parent | 2156e4c3578d68b4a3d15f46298e8c359a2d0636 (diff) | |
download | chromium_src-f4e70625da7c32545fce89e38df9c0a4d93d79a2.zip chromium_src-f4e70625da7c32545fce89e38df9c0a4d93d79a2.tar.gz chromium_src-f4e70625da7c32545fce89e38df9c0a4d93d79a2.tar.bz2 |
Readability review for C++.
Original review: http://codereview.chromium.org/8502033/
In this review, I've only included:
1. The files / classes I created completely myself.
2. The test classes including the new tests I created.
There are ten other files including changes from the original CL that I left out; please let me know if you'd prefer that I include them here.
Thank you!
Review URL: http://codereview.chromium.org/8656006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117042 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/browser_distribution_unittest.cc | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/chrome/installer/util/browser_distribution_unittest.cc b/chrome/installer/util/browser_distribution_unittest.cc index 6a09443..3913201 100644 --- a/chrome/installer/util/browser_distribution_unittest.cc +++ b/chrome/installer/util/browser_distribution_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. // @@ -8,19 +8,6 @@ #include "chrome/installer/util/shell_util.h" #include "testing/gtest/include/gtest/gtest.h" -namespace { -class BrowserDistributionTest : public testing::Test { - protected: - virtual void SetUp() { - // Currently no setup required. - } - - virtual void TearDown() { - // Currently no tear down required. - } -}; -} // namespace - // The distribution strings should not be empty. The unit tests are not linking // with the chrome resources so we cannot test official build. TEST(BrowserDistributionTest, StringsTest) { |