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

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

Issue 1396663005: Revert of Make chrome/common pass "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « chrome/common/chrome_content_client.cc ('k') | chrome/common/chrome_switches.h » ('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/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 29 matching lines...) Expand all
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) {
53 // SELinux prohibits accessing the data directory from isolated services. Only 54 // SELinux prohibits accessing the data directory from isolated services. Only
54 // the browser (empty process type) should access the profile directory. 55 // the browser (empty process type) should access the profile directory.
55 return process_type.empty(); 56 return process_type.empty();
56 } 57 }
57 58
58 } // namespace chrome 59 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/chrome_content_client.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698