blob: 29c2246146f42e29f2941c62b368005a76e35d79 [file] [log] [blame]
Avi Drissman3e1a26c2022-09-15 20:26:031// Copyright 2012 The Chromium Authors
[email protected]42ce29d2011-01-20 23:19:462// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef UI_BASE_UI_BASE_PATHS_H_
6#define UI_BASE_UI_BASE_PATHS_H_
[email protected]42ce29d2011-01-20 23:19:467
Henrique Ferreiro376c7652020-05-22 09:00:048#include "base/component_export.h"
[email protected]f152b67b2012-08-03 12:43:299#include "build/build_config.h"
[email protected]ea47b6a2011-07-17 19:39:4210
[email protected]9911b5e2014-05-15 18:33:0511// This file declares path keys for various special directories. These can be
12// used with the PathService to access these directories and files.
[email protected]42ce29d2011-01-20 23:19:4613
14namespace ui {
15
16enum {
17 PATH_START = 3000,
18
Xiaohan Wang84074092022-01-20 21:25:5419 DIR_LOCALES, // Directory where locale resources are stored.
[email protected]42ce29d2011-01-20 23:19:4620
[email protected]f152b67b2012-08-03 12:43:2921 // Valid only in development environment; TODO(darin): move this
Xiaohan Wang84074092022-01-20 21:25:5422 UI_DIR_TEST_DATA, // Directory where unit test data resides.
[email protected]42ce29d2011-01-20 23:19:4623
Xiaohan Wang84074092022-01-20 21:25:54