chromium/third_party/blink/renderer/platform/exported/file_path_conversion.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "third_party/blink/public/platform/file_path_conversion.h"

#include <string_view>

#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 StringToFilePath(const String& str) {}

base::FilePath WebStringToFilePath(const WebString& web_string) {}

WebString FilePathToWebString(const base::FilePath& path) {}

String FilePathToString(const base::FilePath& path) {}

}  // namespace blink