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

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

Issue 10306009: Make sure only the main browser process and service proceses are allowed to create the profile dire… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add gpu to the list of allowed processes. Created 8 years, 7 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
« no previous file with comments | « chrome/common/chrome_paths_internal.h ('k') | chrome/common/chrome_paths_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_paths_internal.h" 5 #include "chrome/common/chrome_paths_internal.h"
6 6
7 #include "base/environment.h" 7 #include "base/environment.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 kDownloadsDir); 96 kDownloadsDir);
97 return true; 97 return true;
98 } 98 }
99 99
100 bool GetUserDesktop(FilePath* result) { 100 bool GetUserDesktop(FilePath* result) {
101 scoped_ptr<base::Environment> env(base::Environment::Create()); 101 scoped_ptr<base::Environment> env(base::Environment::Create());
102 *result = base::nix::GetXDGUserDirectory(env.get(), "DESKTOP", "Desktop"); 102 *result = base::nix::GetXDGUserDirectory(env.get(), "DESKTOP", "Desktop");
103 return true; 103 return true;
104 } 104 }
105 105
106 bool ProcessNeedsProfileDir(const std::string& process_type) {
107 // For now we have no reason to forbid this on Linux as we don't
108 // have the roaming profile troubles there. Moreover the Linux breakpad needs
109 // profile dir access in all process if enabled on Linux.
110 return true;
111 }
112
106 } // namespace chrome 113 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/chrome_paths_internal.h ('k') | chrome/common/chrome_paths_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698