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

Unified Diff: content/common/blink_glue.cc

Issue 151023002: Move the rest of webkit/glue into content/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/common/blink_glue.cc
diff --git a/webkit/glue/webkit_glue.cc b/content/common/blink_glue.cc
similarity index 79%
rename from webkit/glue/webkit_glue.cc
rename to content/common/blink_glue.cc
index 05e7bca10a5e882751dcb136257fc9a14c6893c5..60414f24f29207ba3339b711df48b42cf6eb2b24 100644
--- a/webkit/glue/webkit_glue.cc
+++ b/content/common/blink_glue.cc
@@ -2,16 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "webkit/glue/webkit_glue.h"
+#include "content/common/blink_glue.h"
#include "base/logging.h"
#include "third_party/WebKit/public/platform/WebFileInfo.h"
-namespace webkit_glue {
+namespace content {
-void FileInfoToWebFileInfo(
- const base::File::Info& file_info,
- blink::WebFileInfo* web_file_info) {
+void FileInfoToWebFileInfo(const base::File::Info& file_info,
+ blink::WebFileInfo* web_file_info) {
DCHECK(web_file_info);
// WebKit now expects NaN as uninitialized/null Date.
if (file_info.last_modified.is_null())
@@ -27,4 +26,4 @@ void FileInfoToWebFileInfo(
COMPILE_ASSERT(std::numeric_limits<double>::has_quiet_NaN, has_quiet_NaN);
-} // namespace webkit_glue
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698