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

Unified Diff: chrome/browser/download/download_target_determiner.cc

Issue 419163003: Windows: Fix a corner case where we still think Adobe Reader is up to date after it has been uninst… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 5 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/download/download_target_determiner.cc
===================================================================
--- chrome/browser/download/download_target_determiner.cc (revision 285038)
+++ chrome/browser/download/download_target_determiner.cc (working copy)
@@ -519,8 +519,10 @@
#if defined(OS_WIN)
if (!local_path_.MatchesExtension(FILE_PATH_LITERAL(".pdf")))
return CONTINUE;
- if (!IsAdobeReaderDefaultPDFViewer())
+ if (!IsAdobeReaderDefaultPDFViewer()) {
+ g_is_adobe_reader_up_to_date_ = false;
return CONTINUE;
+ }
base::PostTaskAndReplyWithResult(
BrowserThread::GetBlockingPool(),
« 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