summaryrefslogtreecommitdiffstats
path: root/chromium/ui/base/ui_base_paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/base/ui_base_paths.h')
-rw-r--r--chromium/ui/base/ui_base_paths.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/chromium/ui/base/ui_base_paths.h b/chromium/ui/base/ui_base_paths.h
index 2b61723493a..cf5e0041e6f 100644
--- a/chromium/ui/base/ui_base_paths.h
+++ b/chromium/ui/base/ui_base_paths.h
@@ -6,10 +6,10 @@
#define UI_BASE_UI_BASE_PATHS_H_
#include "build/build_config.h"
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
-// This file declares path keys for the app module. These can be used with
-// the PathService to access various special directories and files.
+// This file declares path keys for various special directories. These can be
+// used with the PathService to access these directories and files.
namespace ui {
@@ -19,17 +19,19 @@ enum {
DIR_LOCALES, // Directory where locale resources are stored.
// Valid only in development environment; TODO(darin): move this
- DIR_TEST_DATA, // Directory where unit test data resides.
+ UI_DIR_TEST_DATA, // Directory where unit test data resides.
#if defined(OS_ANDROID)
DIR_RESOURCE_PAKS_ANDROID,
#endif
+ UI_TEST_PAK,
+
PATH_END
};
// Call once to register the provider for the path keys defined above.
-UI_EXPORT void RegisterPathProvider();
+UI_BASE_EXPORT void RegisterPathProvider();
} // namespace ui