blob: b9fd9a8204126fd84f3148873f9af18597b95ed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2020 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.
#ifndef FUCHSIA_BASE_FUCHSIA_DIR_SCHEME_H_
#define FUCHSIA_BASE_FUCHSIA_DIR_SCHEME_H_
namespace cr_fuchsia {
// URL scheme used to access content directories.
extern const char kFuchsiaDirScheme[];
// Registers kFuchsiaDirScheme as a standard URL scheme.
void RegisterFuchsiaDirScheme();
} // namespace cr_fuchsia
#endif // FUCHSIA_BASE_FUCHSIA_DIR_SCHEME_H_
|