| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CONTENT_COMMON_CONTENT_PATHS_H_ | 5 #ifndef CONTENT_COMMON_CONTENT_PATHS_H_ |
| 6 #define CONTENT_COMMON_CONTENT_PATHS_H_ | 6 #define CONTENT_COMMON_CONTENT_PATHS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 // This file declares path keys for the content module. These can be used with | 9 // This file declares path keys for the content module. These can be used with |
| 10 // the PathService to access various special directories and files. | 10 // the PathService to access various special directories and files. |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 enum { | 14 enum { |
| 15 PATH_START = 4000, | 15 PATH_START = 4000, |
| 16 | 16 |
| 17 // Path and filename to the executable to use for child processes. | 17 // Path and filename to the executable to use for child processes. |
| 18 CHILD_PROCESS_EXE = PATH_START, | 18 CHILD_PROCESS_EXE = PATH_START, |
| 19 | 19 |
| 20 // Valid only in development environment |
| 21 DIR_TEST_DATA, |
| 22 |
| 20 PATH_END | 23 PATH_END |
| 21 }; | 24 }; |
| 22 | 25 |
| 23 // Call once to register the provider for the path keys defined above. | 26 // Call once to register the provider for the path keys defined above. |
| 24 void RegisterPathProvider(); | 27 void RegisterPathProvider(); |
| 25 | 28 |
| 26 } // namespace content | 29 } // namespace content |
| 27 | 30 |
| 28 #endif // CONTENT_COMMON_CONTENT_PATHS_H_ | 31 #endif // CONTENT_COMMON_CONTENT_PATHS_H_ |
| OLD | NEW |