OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/download/download_commands.h" | 5 #include "chrome/browser/download/download_commands.h" |
6 | 6 |
7 #include "base/strings/string_number_conversions.h" | 7 #include "base/strings/string_number_conversions.h" |
8 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
9 #include "chrome/browser/download/download_crx_util.h" | 9 #include "chrome/browser/download/download_crx_util.h" |
10 #include "chrome/browser/download/download_extensions.h" | 10 #include "chrome/browser/download/download_extensions.h" |
11 #include "chrome/browser/download/download_item_model.h" | 11 #include "chrome/browser/download/download_item_model.h" |
12 #include "chrome/browser/download/download_prefs.h" | 12 #include "chrome/browser/download/download_prefs.h" |
13 #include "chrome/browser/profiles/profile_manager.h" | 13 #include "chrome/browser/profiles/profile_manager.h" |
14 #include "chrome/browser/safe_browsing/download_protection_service.h" | 14 #include "chrome/browser/safe_browsing/download_protection_service.h" |
15 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 15 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
16 #include "chrome/browser/ui/browser_finder.h" | 16 #include "chrome/browser/ui/browser_finder.h" |
| 17 #include "chrome/browser/ui/host_desktop.h" |
17 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" | 18 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" |
18 #include "chrome/common/url_constants.h" | 19 #include "chrome/common/url_constants.h" |
19 #include "chrome/grit/generated_resources.h" | 20 #include "chrome/grit/generated_resources.h" |
20 #include "components/google/core/browser/google_util.h" | 21 #include "components/google/core/browser/google_util.h" |
21 #include "grit/theme_resources.h" | 22 #include "grit/theme_resources.h" |
22 #include "net/base/url_util.h" | 23 #include "net/base/url_util.h" |
23 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
24 #include "ui/base/resource/resource_bundle.h" | 25 #include "ui/base/resource/resource_bundle.h" |
25 | 26 |
26 #if defined(OS_WIN) | 27 #if defined(OS_WIN) |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 is_adobe_pdf_reader_up_to_date = | 240 is_adobe_pdf_reader_up_to_date = |
240 DownloadTargetDeterminer::IsAdobeReaderUpToDate(); | 241 DownloadTargetDeterminer::IsAdobeReaderUpToDate(); |
241 } | 242 } |
242 return IsDownloadPdf() && | 243 return IsDownloadPdf() && |
243 (IsAdobeReaderDefaultPDFViewer() ? is_adobe_pdf_reader_up_to_date | 244 (IsAdobeReaderDefaultPDFViewer() ? is_adobe_pdf_reader_up_to_date |
244 : true); | 245 : true); |
245 #elif defined(OS_MACOSX) || defined(OS_LINUX) | 246 #elif defined(OS_MACOSX) || defined(OS_LINUX) |
246 return IsDownloadPdf(); | 247 return IsDownloadPdf(); |
247 #endif | 248 #endif |
248 } | 249 } |
OLD | NEW |