blob: 3b59da002b169ee934f006a07438f9569181b116 [file] [log] [blame]
Benjamin Lermana3796442021-08-05 12:39:251// 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"
8namespace platform_util {
9
10void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
11 // TODO(crbug.com/1235293)
12 NOTIMPLEMENTED_LOG_ONCE();
13}
14
15namespace internal {
16
17void PlatformOpenVerifiedItem(const base::FilePath& path, OpenItemType type) {
18 // TODO(crbug.com/1235293)
19 NOTIMPLEMENTED_LOG_ONCE();
20}
21
22} // namespace internal
23
24void OpenExternal(Profile* profile, const GURL& url) {
25 // TODO(crbug.com/1235293)
26 NOTIMPLEMENTED_LOG_ONCE();
27}
28
29} // namespace platform_util