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. |