| Index: content/renderer/cpp_variant_unittest.cc
|
| diff --git a/webkit/renderer/cpp_variant_unittest.cc b/content/renderer/cpp_variant_unittest.cc
|
| similarity index 99%
|
| rename from webkit/renderer/cpp_variant_unittest.cc
|
| rename to content/renderer/cpp_variant_unittest.cc
|
| index 1f2d3fe8d3e1837de83d4bc99c4fed093d8c28ea..8a4afca4c14160e2c5df2555af0d1cf350c12266 100644
|
| --- a/webkit/renderer/cpp_variant_unittest.cc
|
| +++ b/content/renderer/cpp_variant_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "content/renderer/cpp_variant.h"
|
| +
|
| #include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| @@ -9,10 +11,10 @@
|
| #include "base/strings/string_util.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/WebKit/public/web/WebBindings.h"
|
| -#include "webkit/renderer/cpp_variant.h"
|
|
|
| using WebKit::WebBindings;
|
| -using webkit_glue::CppVariant;
|
| +
|
| +namespace content {
|
|
|
| // Creates a std::string from an NPVariant of string type. If the NPVariant
|
| // is not a string, empties the std::string.
|
| @@ -512,3 +514,5 @@ TEST_F(CppVariantTest, ToVector) {
|
|
|
| WebBindings::releaseObject(obj);
|
| }
|
| +
|
| +} // namespace content
|
|
|