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

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

Issue 901673002: Instantiate a Kasko reporter inside the Chrome watcher process, when SyzyASAN instrumented. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ship_kasko
Patch Set: Fix a character literal type. Created 5 years, 10 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_watcher/chrome_watcher_main_api.cc ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 namespace base { 10 namespace base {
11 class FilePath; 11 class FilePath;
12 } 12 }
13 13
14 // This file declares path keys for the chrome module. These can be used with 14 // This file declares path keys for the chrome module. These can be used with
15 // the PathService to access various special directories and files. 15 // the PathService to access various special directories and files.
16 16
17 namespace chrome { 17 namespace chrome {
18 18
19 enum { 19 enum {
20 PATH_START = 1000, 20 PATH_START = 1000,
21 21
22 DIR_APP = PATH_START, // Directory where dlls and data reside. 22 DIR_APP = PATH_START, // Directory where dlls and data reside.
23 DIR_LOGS, // Directory where logs should be written. 23 DIR_LOGS, // Directory where logs should be written.
24 DIR_USER_DATA, // Directory where user data can be written. 24 DIR_USER_DATA, // Directory where user data can be written.
25 DIR_CRASH_DUMPS, // Directory where crash dumps are written. 25 DIR_CRASH_DUMPS, // Directory where crash dumps are written.
26 #if defined(OS_WIN)
27 DIR_WATCHER_DATA, // Directory where the Chrome watcher stores
28 // data.
29 #endif
26 DIR_RESOURCES, // Directory containing separate file resources 30 DIR_RESOURCES, // Directory containing separate file resources
27 // used by Chrome at runtime. 31 // used by Chrome at runtime.
28 DIR_INSPECTOR, // Directory where web inspector is located. 32 DIR_INSPECTOR, // Directory where web inspector is located.
29 DIR_APP_DICTIONARIES, // Directory where the global dictionaries are. 33 DIR_APP_DICTIONARIES, // Directory where the global dictionaries are.
30 DIR_USER_DOCUMENTS, // Directory for a user's "My Documents". 34 DIR_USER_DOCUMENTS, // Directory for a user's "My Documents".
31 DIR_USER_MUSIC, // Directory for a user's music. 35 DIR_USER_MUSIC, // Directory for a user's music.
32 DIR_USER_PICTURES, // Directory for a user's pictures. 36 DIR_USER_PICTURES, // Directory for a user's pictures.
33 DIR_USER_VIDEOS, // Directory for a user's videos. 37 DIR_USER_VIDEOS, // Directory for a user's videos.
34 DIR_DEFAULT_DOWNLOADS_SAFE, // Directory for a user's 38 DIR_DEFAULT_DOWNLOADS_SAFE, // Directory for a user's
35 // "My Documents/Downloads", (Windows) or 39 // "My Documents/Downloads", (Windows) or
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 // Call once to register the provider for the path keys defined above. 135 // Call once to register the provider for the path keys defined above.
132 void RegisterPathProvider(); 136 void RegisterPathProvider();
133 137
134 // Get or set the invalid user data dir that was originally specified. 138 // Get or set the invalid user data dir that was originally specified.
135 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); 139 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir);
136 const base::FilePath& GetInvalidSpecifiedUserDataDir(); 140 const base::FilePath& GetInvalidSpecifiedUserDataDir();
137 141
138 } // namespace chrome 142 } // namespace chrome
139 143
140 #endif // CHROME_COMMON_CHROME_PATHS_H__ 144 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW
« no previous file with comments | « chrome/chrome_watcher/chrome_watcher_main_api.cc ('k') | chrome/common/chrome_paths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698