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

Side by Side Diff: chrome/common/chrome_constants.cc

Issue 23376002: Move ManagedModePolicyProvider functionality to ManagedUserSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years, 3 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 #include "chrome/common/chrome_constants.h" 5 #include "chrome/common/chrome_constants.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 FPL("Extension Activity"); 162 FPL("Extension Activity");
163 const base::FilePath::CharType kExtensionsCookieFilename[] = 163 const base::FilePath::CharType kExtensionsCookieFilename[] =
164 FPL("Extension Cookies"); 164 FPL("Extension Cookies");
165 const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); 165 const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons");
166 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); 166 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run");
167 const base::FilePath::CharType kHistoryFilename[] = FPL("History"); 167 const base::FilePath::CharType kHistoryFilename[] = FPL("History");
168 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); 168 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons");
169 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); 169 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State");
170 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); 170 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool");
171 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); 171 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data");
172 const base::FilePath::CharType kManagedModePolicyFilename[] = 172 const base::FilePath::CharType kManagedUserSettingsFilename[] =
173 FPL("Managed Mode Settings"); 173 FPL("Managed Mode Settings");
174 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); 174 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache");
175 const base::FilePath::CharType kNewTabThumbnailsFilename[] = 175 const base::FilePath::CharType kNewTabThumbnailsFilename[] =
176 FPL("Top Thumbnails"); 176 FPL("Top Thumbnails");
177 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); 177 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs");
178 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); 178 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences");
179 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); 179 const base::FilePath::CharType kReadmeFilename[] = FPL("README");
180 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = 180 const base::FilePath::CharType kSafeBrowsingBaseFilename[] =
181 FPL("Safe Browsing"); 181 FPL("Safe Browsing");
182 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); 182 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State");
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 258
259 // This GUID is associated with any 'don't ask me again' settings that the 259 // This GUID is associated with any 'don't ask me again' settings that the
260 // user can select for different file types. 260 // user can select for different file types.
261 // {2676A9A2-D919-4FEE-9187-152100393AB2} 261 // {2676A9A2-D919-4FEE-9187-152100393AB2}
262 const char kApplicationClientIDStringForAVScanning[] = 262 const char kApplicationClientIDStringForAVScanning[] =
263 "2676A9A2-D919-4FEE-9187-152100393AB2"; 263 "2676A9A2-D919-4FEE-9187-152100393AB2";
264 264
265 } // namespace chrome 265 } // namespace chrome
266 266
267 #undef FPL 267 #undef FPL
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698