Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2147)

Unified Diff: content/renderer/cpp_variant.cc

Issue 25378002: Move the rest of source files from webkit/renderer to content/renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698