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

Unified Diff: webkit/base/file_path_string_conversions.cc

Issue 17637007: Delete unused files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « webkit/base/file_path_string_conversions.h ('k') | webkit/base/webkit_base.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/base/file_path_string_conversions.cc
diff --git a/webkit/base/file_path_string_conversions.cc b/webkit/base/file_path_string_conversions.cc
deleted file mode 100644
index a44a0fa275a38570a0b77199b44f00c6a5d0f4f4..0000000000000000000000000000000000000000
--- a/webkit/base/file_path_string_conversions.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// 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 "webkit/base/file_path_string_conversions.h"
-
-#include "third_party/WebKit/public/platform/WebString.h"
-
-namespace webkit_base {
-
-base::FilePath::StringType WebStringToFilePathString(
- const WebKit::WebString& str) {
- return base::FilePath::FromUTF16Unsafe(str).value();
-}
-
-WebKit::WebString FilePathStringToWebString(
- const base::FilePath::StringType& str) {
- return base::FilePath(str).AsUTF16Unsafe();
-}
-
-base::FilePath WebStringToFilePath(const WebKit::WebString& str) {
- return base::FilePath::FromUTF16Unsafe(str);
-}
-
-WebKit::WebString FilePathToWebString(const base::FilePath& file_path) {
- return file_path.AsUTF16Unsafe();
-}
-
-} // namespace webkit_base
« no previous file with comments | « webkit/base/file_path_string_conversions.h ('k') | webkit/base/webkit_base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698