summaryrefslogtreecommitdiff
path: root/chromium/content/common/savable_url_schemes.h
blob: 939ee6aebe5b5a70e50239dfdfded621b21ffb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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_SAVABLE_URL_SCHEMES_H_
#define CONTENT_COMMON_SAVABLE_URL_SCHEMES_H_

namespace content {

// Null terminated list of schemes that are savable. This function can be
// invoked on any thread.
const char* const* GetSavableSchemesInternal();

// Intended for use only during initialization.
void SetSavableSchemes(const char* const* savable_schemes);

}  // namespace content

#endif  // CONTENT_COMMON_SAVABLE_URL_SCHEMES_H_