| Index: base/test/values_test_util.cc
|
| diff --git a/chrome/test/base/values_test_util.cc b/base/test/values_test_util.cc
|
| similarity index 93%
|
| rename from chrome/test/base/values_test_util.cc
|
| rename to base/test/values_test_util.cc
|
| index 1e27f1efc0c659613b55921749f53f015259d735..91ce347be77e40b767ec68048c0b67c60c0b19fc 100644
|
| --- a/chrome/test/base/values_test_util.cc
|
| +++ b/base/test/values_test_util.cc
|
| @@ -1,15 +1,14 @@
|
| -// 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.
|
|
|
| -#include "chrome/test/base/values_test_util.h"
|
| -
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/string_number_conversions.h"
|
| +#include "base/test/values_test_util.h"
|
| #include "base/values.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace test {
|
| +namespace base {
|
|
|
| void ExpectDictBooleanValue(bool expected_value,
|
| const DictionaryValue& value,
|
| @@ -59,4 +58,4 @@ void ExpectStringValue(const std::string& expected_str,
|
| EXPECT_EQ(expected_str, actual_str);
|
| }
|
|
|
| -} // namespace test
|
| +} // namespace base
|
|
|