OLD | NEW |
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_paths_internal.h" | 5 #include "chrome/common/chrome_paths_internal.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <knownfolders.h> | 8 #include <knownfolders.h> |
9 #include <shellapi.h> | 9 #include <shellapi.h> |
10 #include <shlobj.h> | 10 #include <shlobj.h> |
11 #include <shobjidl.h> | 11 #include <shobjidl.h> |
12 | 12 |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/win/metro.h" | 14 #include "base/win/metro.h" |
15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
16 #include "base/win/scoped_co_mem.h" | 16 #include "base/win/scoped_co_mem.h" |
17 #include "chrome/common/chrome_constants.h" | 17 #include "chrome/common/chrome_constants.h" |
18 #include "chrome/installer/util/browser_distribution.h" | 18 #include "chrome/installer/util/browser_distribution.h" |
19 | 19 |
| 20 namespace { |
| 21 // TODO(pastarmovj): Remove this copy of kServiceProcess once we get |
| 22 // better way to share constants between content and chrome. Using content |
| 23 // switches makes all hell break loose on us when linking. |
| 24 const char kServiceProcess[] = "service"; |
| 25 } |
| 26 |
20 namespace chrome { | 27 namespace chrome { |
21 | 28 |
22 bool GetDefaultUserDataDirectory(FilePath* result) { | 29 bool GetDefaultUserDataDirectory(FilePath* result) { |
23 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result)) | 30 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result)) |
24 return false; | 31 return false; |
25 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); | 32 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); |
26 *result = result->Append(dist->GetInstallSubDir()); | 33 *result = result->Append(dist->GetInstallSubDir()); |
27 if (base::win::GetMetroModule()) | 34 if (base::win::GetMetroModule()) |
28 *result = result->Append(kMetroChromeUserDataSubDir); | 35 *result = result->Append(kMetroChromeUserDataSubDir); |
29 *result = result->Append(chrome::kUserDataDirname); | 36 *result = result->Append(chrome::kUserDataDirname); |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 // so we don't bother handling it. | 97 // so we don't bother handling it. |
91 wchar_t system_buffer[MAX_PATH]; | 98 wchar_t system_buffer[MAX_PATH]; |
92 system_buffer[0] = 0; | 99 system_buffer[0] = 0; |
93 if (FAILED(SHGetFolderPath(NULL, CSIDL_DESKTOPDIRECTORY, NULL, | 100 if (FAILED(SHGetFolderPath(NULL, CSIDL_DESKTOPDIRECTORY, NULL, |
94 SHGFP_TYPE_CURRENT, system_buffer))) | 101 SHGFP_TYPE_CURRENT, system_buffer))) |
95 return false; | 102 return false; |
96 *result = FilePath(system_buffer); | 103 *result = FilePath(system_buffer); |
97 return true; | 104 return true; |
98 } | 105 } |
99 | 106 |
| 107 bool ProcessNeedsProfileDir(const std::string& process_type) { |
| 108 // On windows we don't want subprocesses other than the browser process and |
| 109 // service processes to be able to use the profile directory because if it |
| 110 // lies on a network share the sandbox will prevent us from accessing it. |
| 111 return process_type.empty() || process_type == kServiceProcess; |
| 112 } |
| 113 |
100 } // namespace chrome | 114 } // namespace chrome |
OLD | NEW |