Chromium Code Reviews| 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 "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "content/public/common/content_switches.h" | |
| 10 | 11 |
| 11 namespace chrome { | 12 namespace chrome { |
| 12 | 13 |
| 13 void GetUserCacheDirectory(const base::FilePath& profile_dir, | 14 void GetUserCacheDirectory(const base::FilePath& profile_dir, |
| 14 base::FilePath* result) { | 15 base::FilePath* result) { |
| 15 if (!PathService::Get(base::DIR_CACHE, result)) | 16 if (!PathService::Get(base::DIR_CACHE, result)) |
| 16 *result = profile_dir; | 17 *result = profile_dir; |
| 17 } | 18 } |
| 18 | 19 |
| 19 bool GetDefaultUserDataDirectory(base::FilePath* result) { | 20 bool GetDefaultUserDataDirectory(base::FilePath* result) { |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 43 NOTIMPLEMENTED(); | 44 NOTIMPLEMENTED(); |
| 44 return false; | 45 return false; |
| 45 } | 46 } |
| 46 | 47 |
| 47 bool GetUserVideosDirectory(base::FilePath* result) { | 48 bool GetUserVideosDirectory(base::FilePath* result) { |
| 48 NOTIMPLEMENTED(); | 49 NOTIMPLEMENTED(); |
| 49 return false; | 50 return false; |
| 50 } | 51 } |
| 51 | 52 |
| 52 bool ProcessNeedsProfileDir(const std::string& process_type) { | 53 bool ProcessNeedsProfileDir(const std::string& process_type) { |
| 54 // SELinux prohibits accessing the data directory for isolated services. | |
| 55 if (process_type == switches::kRendererProcess) | |
|
klobag.chromium
2014/10/17 17:41:14
How about the other child process type?
Should we
Robert Sesek
2014/10/17 18:00:32
I wanted to keep the change scoped small, since I
| |
| 56 return false; | |
| 57 | |
| 53 return true; | 58 return true; |
| 54 } | 59 } |
| 55 | 60 |
| 56 } // namespace chrome | 61 } // namespace chrome |
| OLD | NEW |