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

Unified Diff: chrome/browser/chrome_browser_main_win.cc

Issue 2913173002: Remove font cache deletion code (Closed)
Patch Set: Delete cleanup code Created 3 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main_win.cc
diff --git a/chrome/browser/chrome_browser_main_win.cc b/chrome/browser/chrome_browser_main_win.cc
index ea0e3a4cbfdb197e43788f01c10215580ff43d95..d781db95b9189356144773393bc38c1b8268f26a 100644
--- a/chrome/browser/chrome_browser_main_win.cc
+++ b/chrome/browser/chrome_browser_main_win.cc
@@ -353,15 +353,6 @@ void ChromeBrowserMainPartsWin::ShowMissingLocaleMessageBox() {
void ChromeBrowserMainPartsWin::PostProfileInit() {
ChromeBrowserMainParts::PostProfileInit();
- // TODO(kulshin): remove this cleanup code in 2017. http://crbug.com/603718
- // Attempt to delete the font cache and ignore any errors.
- base::FilePath path(
- profile()->GetPath().AppendASCII("ChromeDWriteFontCache"));
- content::BrowserThread::PostAfterStartupTask(
- FROM_HERE, content::BrowserThread::GetTaskRunnerForThread(
- content::BrowserThread::FILE),
- base::Bind(base::IgnoreResult(&base::DeleteFile), path, false));
-
// Create the module database and hook up the in-process module watcher. This
// needs to be done before any child processes are initialized as the
// ModuleDatabase is an endpoint for IPC from child processes.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698