summaryrefslogtreecommitdiffstats
path: root/base/field_trial_unittest.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-17 23:05:28 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-17 23:05:28 +0000
commitf16339329dd06c7bc6fa409af73907253efad8dc (patch)
tree8303b6a935379ac9a68379f5fd896a6e84d7e5ea /base/field_trial_unittest.cc
parent681d27566707595006c468b17c27f8341d176b45 (diff)
downloadchromium_src-f16339329dd06c7bc6fa409af73907253efad8dc.zip
chromium_src-f16339329dd06c7bc6fa409af73907253efad8dc.tar.gz
chromium_src-f16339329dd06c7bc6fa409af73907253efad8dc.tar.bz2
Header cleanup in base.
This makes uses of StringPrintf and friends use the base namespace and include stringprintf.h explicitly. This also removes a bunch of unnecessary string_util includes (which exposed a few other errors like people forgetting to include <vector>. TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3119022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/field_trial_unittest.cc')
-rw-r--r--base/field_trial_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/field_trial_unittest.cc b/base/field_trial_unittest.cc
index 7d2ea18..54523dd 100644
--- a/base/field_trial_unittest.cc
+++ b/base/field_trial_unittest.cc
@@ -6,7 +6,7 @@
#include "base/field_trial.h"
-#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "testing/gtest/include/gtest/gtest.h"
class FieldTrialTest : public testing::Test {
@@ -76,7 +76,7 @@ TEST_F(FieldTrialTest, RemainingProbability) {
scoped_refptr<FieldTrial> trial;
int counter = 0;
do {
- std::string name = StringPrintf("trial%d", ++counter);
+ std::string name = base::StringPrintf("trial%d", ++counter);
trial = new FieldTrial(name, 10);
trial->AppendGroup(loser, 5); // 50% chance of not being chosen.
} while (trial->group() != FieldTrial::kNotParticipating);