| 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
|
|
|