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

Unified Diff: chrome/common/chrome_paths.cc

Issue 334783002: Componentize component_updater: Move some paths/constants to component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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 3fef01292d56a2068925a10fa3aee0ff318534a0..6960bf3c61e3bd02a701c4c3d91821208cfcf337 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -352,12 +352,6 @@ bool PathProvider(int key, base::FilePath* result) {
#endif
cur = cur.Append(FILE_PATH_LITERAL("pnacl"));
break;
- case chrome::DIR_RECOVERY_BASE:
- if (!PathService::Get(chrome::DIR_USER_DATA, &cur))
- return false;
- cur = cur.Append(FILE_PATH_LITERAL("recovery"));
- create_dir = true;
- break;
#if defined(OS_POSIX) && !defined(OS_MACOSX)
case chrome::FILE_O1D_PLUGIN:
if (!PathService::Get(base::DIR_MODULE, &cur))
@@ -370,11 +364,6 @@ bool PathProvider(int key, base::FilePath* result) {
cur = cur.Append(kGTalkPluginFileName);
break;
#endif
- case chrome::DIR_COMPONENT_CLD2:
- if (!PathService::Get(chrome::DIR_USER_DATA, &cur))
- return false;
- cur = cur.Append(FILE_PATH_LITERAL("CLD"));
- break;
#if defined(WIDEVINE_CDM_AVAILABLE) && defined(ENABLE_PEPPER_CDMS)
#if defined(WIDEVINE_CDM_IS_COMPONENT)
case chrome::DIR_COMPONENT_WIDEVINE_CDM:

Powered by Google App Engine
This is Rietveld 408576698