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

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

Issue 4062002: Dynamic policy refresh support for the Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/map/list/, nits. Created 10 years, 1 month 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 | « chrome/chrome_tests.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 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 24 matching lines...) Expand all
35 // this when a temporary file or directory will 35 // this when a temporary file or directory will
36 // be moved into the profile, to avoid issues 36 // be moved into the profile, to avoid issues
37 // moving across volumes. See crbug.com/13044 . 37 // moving across volumes. See crbug.com/13044 .
38 DIR_INTERNAL_PLUGINS, // Directory where internal plugins reside. 38 DIR_INTERNAL_PLUGINS, // Directory where internal plugins reside.
39 #if !defined(OS_MACOSX) && defined(OS_POSIX) 39 #if !defined(OS_MACOSX) && defined(OS_POSIX)
40 DIR_POLICY_FILES, // Directory for system-wide read-only 40 DIR_POLICY_FILES, // Directory for system-wide read-only
41 // policy files that allow sys-admins 41 // policy files that allow sys-admins
42 // to set policies for chrome. This directory 42 // to set policies for chrome. This directory
43 // contains subdirectories. 43 // contains subdirectories.
44 #endif 44 #endif
45 #if defined(OS_MACOSX)
46 DIR_MANAGED_PREFS, // Directory that stores the managed prefs plist
47 // files for the current user.
48 #endif
45 FILE_RESOURCE_MODULE, // Full path and filename of the module that 49 FILE_RESOURCE_MODULE, // Full path and filename of the module that
46 // contains embedded resources (version, 50 // contains embedded resources (version,
47 // strings, images, etc.). 51 // strings, images, etc.).
48 FILE_LOCAL_STATE, // Path and filename to the file in which 52 FILE_LOCAL_STATE, // Path and filename to the file in which
49 // machine/installation-specific state is saved. 53 // machine/installation-specific state is saved.
50 FILE_RECORDED_SCRIPT, // Full path to the script.log file that 54 FILE_RECORDED_SCRIPT, // Full path to the script.log file that
51 // contains recorded browser events for 55 // contains recorded browser events for
52 // playback. 56 // playback.
53 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. 57 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file.
54 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. 58 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file.
(...skipping 17 matching lines...) Expand all
72 76
73 PATH_END 77 PATH_END
74 }; 78 };
75 79
76 // Call once to register the provider for the path keys defined above. 80 // Call once to register the provider for the path keys defined above.
77 void RegisterPathProvider(); 81 void RegisterPathProvider();
78 82
79 } // namespace chrome 83 } // namespace chrome
80 84
81 #endif // CHROME_COMMON_CHROME_PATHS_H__ 85 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/chrome_paths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698