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

Unified Diff: chrome/common/chrome_paths.cc

Issue 1695563002: Media Galleries Partial Deprecation: Remove scan functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_paths.cc
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index 970dc6b01c69071d31f5615cd55eba7e08dd6932..c0f505ae332692eb97b37e0a3982aee89a6ba8af 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -480,22 +480,6 @@ bool PathProvider(int key, base::FilePath* result) {
break;
}
#endif
-#if defined(OS_MACOSX) && !defined(OS_IOS)
- case chrome::DIR_USER_LIBRARY: {
- if (!GetUserLibraryDirectory(&cur))
- return false;
- if (!base::PathExists(cur)) // We don't want to create this.
- return false;
- break;
- }
- case chrome::DIR_USER_APPLICATIONS: {
- if (!GetUserApplicationsDirectory(&cur))
- return false;
- if (!base::PathExists(cur)) // We don't want to create this.
- return false;
- break;
- }
-#endif
#if defined(OS_CHROMEOS) || (defined(OS_LINUX) && defined(CHROMIUM_BUILD)) || \
(defined(OS_MACOSX) && !defined(OS_IOS))
case chrome::DIR_USER_EXTERNAL_EXTENSIONS: {

Powered by Google App Engine
This is Rietveld 408576698