| Index: content/renderer/cpp_variant.cc
|
| diff --git a/webkit/renderer/cpp_variant.cc b/content/renderer/cpp_variant.cc
|
| similarity index 98%
|
| rename from webkit/renderer/cpp_variant.cc
|
| rename to content/renderer/cpp_variant.cc
|
| index 79d2d4bbb505b9364caa1f641e24f0912580f16f..093c01423fcffe6650df932ac388b22b686f99bf 100644
|
| --- a/webkit/renderer/cpp_variant.cc
|
| +++ b/content/renderer/cpp_variant.cc
|
| @@ -2,19 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// This file contains definitions for CppVariant.
|
| +#include "content/renderer/cpp_variant.h"
|
|
|
| #include <limits>
|
| +
|
| #include "base/logging.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "third_party/WebKit/public/web/WebBindings.h"
|
| -#include "webkit/renderer/cpp_variant.h"
|
|
|
| using WebKit::WebBindings;
|
|
|
| -namespace webkit_glue {
|
| +namespace content {
|
|
|
| CppVariant::CppVariant() {
|
| type = NPVariantType_Null;
|
| @@ -265,4 +265,4 @@ bool CppVariant::Invoke(const std::string& method, const CppVariant* args,
|
| }
|
| }
|
|
|
| -} // namespace webkit_glue
|
| +} // namespace content
|
|
|