summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc')
-rw-r--r--chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc46
1 files changed, 46 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc b/chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc
new file mode 100644
index 00000000000..ad589bdfad6
--- /dev/null
+++ b/chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc
@@ -0,0 +1,46 @@
+// Copyright 2016 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 "third_party/blink/public/platform/file_path_conversion.h"
+
+#include "base/files/file_path.h"
+#include "build/build_config.h"
+#include "third_party/blink/public/platform/web_string.h"
+#include "third_party/blink/renderer/platform/wtf/text/string_utf8_adaptor.h"
+#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
+
+namespace blink {
+
+base::FilePath WebStringToFilePath(const WebString& web_string) {
+ if (web_string.IsEmpty())
+ return base::FilePath();
+
+ String str = web_string;
+ if (!str.Is8Bit()) {
+ return base::FilePath::FromUTF16Unsafe(
+ base::StringPiece16(str.Characters16(), str.length()));
+ }
+
+#if defined(OS_POSIX)
+ StringUTF8Adaptor utf8(str);
+ return base::FilePath::FromUTF8Unsafe(utf8.AsStringPiece());
+#else
+ const LChar* data8 = str.Characters8();
+ return base::FilePath::FromUTF16Unsafe(
+ base::string16(data8, data8 + str.length()));
+#endif
+}
+
+WebString FilePathToWebString(const base::FilePath& path) {
+ if (path.empty())
+ return WebString();
+
+#if defined(OS_POSIX)
+ return WebString::FromUTF8(path.value());
+#else
+ return WebString::FromUTF16(path.AsUTF16Unsafe());
+#endif
+}
+
+} // namespace blink