diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-04 05:18:47 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-04 05:18:47 +0000 |
commit | bf3e52c3bfb0fe963339049950b05cb25372bf75 (patch) | |
tree | 56b3e5145cc04d3908db0889a5fa45a43201a598 /base/base_paths_win.h | |
parent | af10eb4a05a3bb5cc0a21a0937bf886a1b2fa2de (diff) | |
download | chromium_src-bf3e52c3bfb0fe963339049950b05cb25372bf75.zip chromium_src-bf3e52c3bfb0fe963339049950b05cb25372bf75.tar.gz chromium_src-bf3e52c3bfb0fe963339049950b05cb25372bf75.tar.bz2 |
Moved the Chromoting host configuration under %SystemDrive%\ProgramData and ACL-protected it explicitly. Raised the configuration size limit to 1MB.
This CL also adds IDaemonControl::UpdateConfig stub to be used later for minor configuration changes (changing the host pin for instance).
Review URL: https://chromiumcodereview.appspot.com/9963121
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130558 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_paths_win.h')
-rw-r--r-- | base/base_paths_win.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/base/base_paths_win.h b/base/base_paths_win.h index 02b1f49..c005bb2 100644 --- a/base/base_paths_win.h +++ b/base/base_paths_win.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -27,9 +27,13 @@ enum { // Start Menu\Programs" DIR_APP_DATA, // Application Data directory under the user profile. DIR_PROFILE, // Usually "C:\Documents and settings\<user>. - DIR_LOCAL_APP_DATA_LOW, // Local AppData directory for low integrity level. - DIR_LOCAL_APP_DATA, // "Local Settings\Application Data" directory under the - // user profile. + DIR_LOCAL_APP_DATA_LOW, // Local AppData directory for low integrity level. + DIR_LOCAL_APP_DATA, // "Local Settings\Application Data" directory under + // the user profile. + DIR_COMMON_APP_DATA, // W2K, XP, W2K3: "C:\Documents and Settings\ + // All Users\Application Data". + // Vista, W2K8 and above: "C:\ProgramData". + PATH_WIN_END }; |