John Abd-El-Malek | 2276305 | 2021-06-15 03:35:53 | [diff] [blame] | 1 | // 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 | |
| 10 | namespace content { |
| 11 | |
| 12 | enum { |
| 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. |
| 25 | void RegisterShellPathProvider(); |
| 26 | |
| 27 | } // namespace content |
| 28 | |
| 29 | #endif // CONTENT_SHELL_BROWSER_SHELL_PATHS_H_ |