Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Side by Side Diff: app/app_paths.h

Issue 115420: Reland this change. Registers paths for the testing exe, too.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « app/app.vcproj ('k') | app/app_paths.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file.
4
5 #ifndef APP_APP_PATHS_
6 #define APP_APP_PATHS_
7
8 // This file declares path keys for the app module. These can be used with
9 // the PathService to access various special directories and files.
10
11 namespace app {
12
13 enum {
14 PATH_START = 2000,
15
16 DIR_THEMES, // directory where theme dll files are stored
17 DIR_LOCALES, // directory where locale resources are stored
18
19 // Valid only in development environment; TODO(darin): move these
20 DIR_TEST_DATA, // directory where unit test data resides
21
22 PATH_END
23 };
24
25 // Call once to register the provider for the path keys defined above.
26 void RegisterPathProvider();
27
28 } // namespace app
29
30 #endif // #ifndef APP_APP_PATHS_
OLDNEW
« no previous file with comments | « app/app.vcproj ('k') | app/app_paths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698