blob: fa96e5bcff3ef2ac9013141ad8807bbedeaa0b6d [file] [log] [blame]
John Abd-El-Malek22763052021-06-15 03:35:531// 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#ifndef CONTENT_SHELL_BROWSER_SHELL_PATHS_H_
6#define CONTENT_SHELL_BROWSER_SHELL_PATHS_H_
7
8#include "build/build_config.h"
9
10namespace content {
11
12enum {
13 SHELL_PATH_START = 12000,
14
15 // Directory where user data can be written.
16 SHELL_DIR_USER_DATA = SHELL_PATH_START,
17
18 // TODO(jam): move from content/common since it's test only.
19 // DIR_TEST_DATA,
20
21 SHELL_PATH_END
22};
23
24// Call once to register the provider for the path keys defined above.
25void RegisterShellPathProvider();
26
27} // namespace content
28
29#endif // CONTENT_SHELL_BROWSER_SHELL_PATHS_H_