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

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

Issue 12221065: Disable normal default extensions in case of managed users (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unintended changes Created 7 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 | Annotate | Revision Log
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 // 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
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 #if defined(OS_CHROMEOS) 98 #if defined(OS_CHROMEOS)
99 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos 99 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos
100 // wallpapers reside. 100 // wallpapers reside.
101 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos 101 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos
102 // wallpaper thumbnails reside. 102 // wallpaper thumbnails reside.
103 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers 103 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers
104 // reside. 104 // reside.
105 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the 105 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the
106 // default app order. 106 // default app order.
107 #endif 107 #endif
108 #if defined(ENABLE_MANAGED_USERS)
109 DIR_MANAGED_USERS_DEFAULT_APPS, // Directory where installer places .crx
110 // files to be installed when managed user
111 // session starts.
112 #endif
108 113
109 // Valid only in development environment; TODO(darin): move these 114 // Valid only in development environment; TODO(darin): move these
110 DIR_GEN_TEST_DATA, // Directory where generated test data resides. 115 DIR_GEN_TEST_DATA, // Directory where generated test data resides.
111 DIR_TEST_DATA, // Directory where unit test data resides. 116 DIR_TEST_DATA, // Directory where unit test data resides.
112 DIR_TEST_TOOLS, // Directory where unit test tools reside. 117 DIR_TEST_TOOLS, // Directory where unit test tools reside.
113 118
114 PATH_END 119 PATH_END
115 }; 120 };
116 121
117 // Call once to register the provider for the path keys defined above. 122 // Call once to register the provider for the path keys defined above.
118 void RegisterPathProvider(); 123 void RegisterPathProvider();
119 124
120 } // namespace chrome 125 } // namespace chrome
121 126
122 #endif // CHROME_COMMON_CHROME_PATHS_H__ 127 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698