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

Side by Side Diff: chrome/common/chrome_paths.h

Issue 2865010: Load net-internals resources from resources.pak. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: mini installer 2 Created 10 years, 6 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
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/common/chrome_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
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_CHROME_PATHS_H__ 5 #ifndef CHROME_COMMON_CHROME_PATHS_H__
6 #define CHROME_COMMON_CHROME_PATHS_H__ 6 #define CHROME_COMMON_CHROME_PATHS_H__
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 // This file declares path keys for the chrome module. These can be used with 10 // This file declares path keys for the chrome module. These can be used with
11 // the PathService to access various special directories and files. 11 // the PathService to access various special directories and files.
12 12
13 namespace chrome { 13 namespace chrome {
14 14
15 enum { 15 enum {
16 PATH_START = 1000, 16 PATH_START = 1000,
17 17
18 DIR_APP = PATH_START, // Directory where dlls and data reside. 18 DIR_APP = PATH_START, // Directory where dlls and data reside.
19 DIR_LOGS, // Directory where logs should be written. 19 DIR_LOGS, // Directory where logs should be written.
20 DIR_USER_DATA, // Directory where user data can be written. 20 DIR_USER_DATA, // Directory where user data can be written.
21 DIR_CRASH_DUMPS, // Directory where crash dumps are written. 21 DIR_CRASH_DUMPS, // Directory where crash dumps are written.
22 DIR_USER_DESKTOP, // Directory that correspond to the desktop. 22 DIR_USER_DESKTOP, // Directory that correspond to the desktop.
23 DIR_RESOURCES, // Directory containing separate file resources 23 DIR_RESOURCES, // Directory containing separate file resources
24 // used by Chrome at runtime. 24 // used by Chrome at runtime.
25 DIR_SHARED_RESOURCES, // Directory containing js and css files used 25 DIR_SHARED_RESOURCES, // Directory containing js and css files used
26 // by DOMUI and component extensions. 26 // by DOMUI and component extensions.
27 DIR_BOOKMARK_MANAGER, // Directory containing the bookmark manager. 27 DIR_BOOKMARK_MANAGER, // Directory containing the bookmark manager.
28 DIR_INSPECTOR, // Directory where web inspector is located. 28 DIR_INSPECTOR, // Directory where web inspector is located.
29 DIR_NET_INTERNALS, // Directory where net internals is located.
30 DIR_APP_DICTIONARIES, // Directory where the global dictionaries are. 29 DIR_APP_DICTIONARIES, // Directory where the global dictionaries are.
31 DIR_USER_DOCUMENTS, // Directory for a user's "My Documents". 30 DIR_USER_DOCUMENTS, // Directory for a user's "My Documents".
32 DIR_DEFAULT_DOWNLOADS_SAFE, // Directory for a user's 31 DIR_DEFAULT_DOWNLOADS_SAFE, // Directory for a user's
33 // "My Documents/Downloads". 32 // "My Documents/Downloads".
34 DIR_DEFAULT_DOWNLOADS, // Directory for a user's downloads. 33 DIR_DEFAULT_DOWNLOADS, // Directory for a user's downloads.
35 DIR_USER_DATA_TEMP, // A temp directory within DIR_USER_DATA. Use 34 DIR_USER_DATA_TEMP, // A temp directory within DIR_USER_DATA. Use
36 // this when a temporary file or directory will 35 // this when a temporary file or directory will
37 // be moved into the profile, to avoid issues 36 // be moved into the profile, to avoid issues
38 // moving across volumes. See crbug.com/13044 . 37 // moving across volumes. See crbug.com/13044 .
39 DIR_INTERNAL_PLUGINS, // Directory where internal plugins reside. 38 DIR_INTERNAL_PLUGINS, // Directory where internal plugins reside.
(...skipping 27 matching lines...) Expand all
67 66
68 PATH_END 67 PATH_END
69 }; 68 };
70 69
71 // Call once to register the provider for the path keys defined above. 70 // Call once to register the provider for the path keys defined above.
72 void RegisterPathProvider(); 71 void RegisterPathProvider();
73 72
74 } // namespace chrome 73 } // namespace chrome
75 74
76 #endif // CHROME_COMMON_CHROME_PATHS_H__ 75 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/common/chrome_paths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698