Benjamin Lerman | a379644 | 2021-08-05 12:39:25 | [diff] [blame] | 1 | // Copyright 2021 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 | #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/1235293) |
| 12 | NOTIMPLEMENTED_LOG_ONCE(); |
| 13 | } |
| 14 | |
| 15 | namespace internal { |
| 16 | |
| 17 | void PlatformOpenVerifiedItem(const base::FilePath& path, OpenItemType type) { |
| 18 | // TODO(crbug.com/1235293) |
| 19 | NOTIMPLEMENTED_LOG_ONCE(); |
| 20 | } |
| 21 | |
| 22 | } // namespace internal |
| 23 | |
| 24 | void OpenExternal(Profile* profile, const GURL& url) { |
| 25 | // TODO(crbug.com/1235293) |
| 26 | NOTIMPLEMENTED_LOG_ONCE(); |
| 27 | } |
| 28 | |
| 29 | } // namespace platform_util |