[M120 Migration]Fix for crash during chrome exit
[platform/framework/web/chromium-efl.git] / chrome / browser / platform_util_fuchsia.cc
1 // Copyright 2021 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/platform_util.h"
6
7 #include "base/notreached.h"
8 namespace platform_util {
9
10 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
11   // TODO(crbug.com/1231928): Implement once Fuchsia supports opening folders.
12   NOTIMPLEMENTED_LOG_ONCE();
13 }
14
15 namespace internal {
16
17 void PlatformOpenVerifiedItem(const base::FilePath& path, OpenItemType type) {
18   // TODO(crbug.com/1231928): Implement once Fuchsia supports opening folders.
19   NOTIMPLEMENTED_LOG_ONCE();
20 }
21
22 }  // namespace internal
23
24 void OpenExternal(const GURL& url) {
25   // TODO(crbug.com/1231928): Implement once Fuchsia supports opening folders.
26   NOTIMPLEMENTED_LOG_ONCE();
27 }
28
29 }  // namespace platform_util