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

Unified Diff: chrome/common/chrome_paths_win.cc

Issue 128783003: Remove unused function GetChromeFrameUserDataDirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « chrome/common/chrome_paths_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_paths_win.cc
diff --git a/chrome/common/chrome_paths_win.cc b/chrome/common/chrome_paths_win.cc
index 55cad3f23586121c742c21ce12e7724538dcec23..18073ca04759a79e61e08025286c86dd5ef4061f 100644
--- a/chrome/common/chrome_paths_win.cc
+++ b/chrome/common/chrome_paths_win.cc
@@ -51,16 +51,6 @@ bool GetDefaultUserDataDirectory(base::FilePath* result) {
return true;
}
-bool GetChromeFrameUserDataDirectory(base::FilePath* result) {
- if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result))
- return false;
- BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution(
- BrowserDistribution::CHROME_FRAME);
- *result = result->Append(dist->GetInstallSubDir());
- *result = result->Append(chrome::kUserDataDirname);
- return true;
-}
-
void GetUserCacheDirectory(const base::FilePath& profile_dir,
base::FilePath* result) {
// This function does more complicated things on Mac/Linux.
« no previous file with comments | « chrome/common/chrome_paths_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698