summaryrefslogtreecommitdiffstats
path: root/content/common/url_schemes.h
blob: 571c660f217f6c95f2549977d35ac0b9a9bf4bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2012 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 CONTENT_COMMON_URL_SCHEMES_H_
#define CONTENT_COMMON_URL_SCHEMES_H_

#include "content/common/content_export.h"

namespace content {

// Note: ContentMainRunner calls this method internally as part of main
// initialziation, so this function generally should not be called by
// embedders. It's exported to facilitate test harnesses that do not
// utilize ContentMainRunner and that do not wish to lock the set
// of standard schemes at init time.
//
// Called near the beginning of startup to register URL schemes that should
// be parsed as "standard" with the src/url/ library. Optionally, the set
// of standard schemes is locked down. The embedder can add additional
// schemes by overriding the ContentClient::AddAdditionalSchemes method.
CONTENT_EXPORT void RegisterContentSchemes(bool lock_standard_schemes);

}  // namespace content

#endif  // CONTENT_COMMON_URL_SCHEMES_H_