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

Side by Side Diff: webkit/base/file_path_string_conversions.h

Issue 17637007: Delete unused files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/base/file_path_string_conversions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_BASE_FILE_PATH_STRING_CONVERSIONS_H_
6 #define WEBKIT_BASE_FILE_PATH_STRING_CONVERSIONS_H_
7
8 #include "base/files/file_path.h"
9 #include "webkit/base/webkit_base_export.h"
10
11 namespace WebKit {
12 class WebString;
13 }
14
15 namespace webkit_base {
16
17 // DEPRECATED
18 // Use FilePath::{As,From}UTF16Unsafe instead.
19
20 WEBKIT_BASE_EXPORT base::FilePath::StringType WebStringToFilePathString(
21 const WebKit::WebString& str);
22 WEBKIT_BASE_EXPORT WebKit::WebString FilePathStringToWebString(
23 const base::FilePath::StringType& str);
24 WEBKIT_BASE_EXPORT base::FilePath WebStringToFilePath(
25 const WebKit::WebString& str);
26 WEBKIT_BASE_EXPORT WebKit::WebString FilePathToWebString(
27 const base::FilePath& file_path);
28
29 } // namespace webkit_base
30
31 #endif // WEBKIT_BASE_FILE_PATH_STRING_CONVERSIONS_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/base/file_path_string_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698