| 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 3a996d66a8f5d9c7d8b9e074a54edd37fef51573..05463bd554b2ba5c7b2dc46045a7c4d2d8c66fbc 100644
|
| --- a/chrome/browser/chrome_browser_main_win.cc
|
| +++ b/chrome/browser/chrome_browser_main_win.cc
|
| @@ -312,6 +312,15 @@ 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::GetMessageLoopProxyForThread(
|
| + content::BrowserThread::FILE),
|
| + base::Bind(base::IgnoreResult(&base::DeleteFile), path, false));
|
| }
|
|
|
| void ChromeBrowserMainPartsWin::PostBrowserStart() {
|
|
|