OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ui/pdf/pdf_unsupported_feature.h" | 5 #include "chrome/browser/ui/pdf/pdf_unsupported_feature.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "base/version.h" | 10 #include "base/version.h" |
| 11 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
11 #include "chrome/browser/chrome_plugin_service_filter.h" | 12 #include "chrome/browser/chrome_plugin_service_filter.h" |
12 #include "chrome/browser/infobars/infobar_tab_helper.h" | 13 #include "chrome/browser/infobars/infobar_tab_helper.h" |
13 #include "chrome/browser/plugin_prefs.h" | 14 #include "chrome/browser/plugin_prefs.h" |
14 #include "chrome/browser/prefs/pref_service.h" | 15 #include "chrome/browser/prefs/pref_service.h" |
15 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
16 #include "chrome/browser/renderer_preferences_util.h" | 17 #include "chrome/browser/renderer_preferences_util.h" |
17 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | |
18 #include "chrome/browser/tab_contents/tab_util.h" | 18 #include "chrome/browser/tab_contents/tab_util.h" |
19 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 19 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
20 #include "chrome/common/chrome_content_client.h" | 20 #include "chrome/common/chrome_content_client.h" |
21 #include "chrome/common/jstemplate_builder.h" | 21 #include "chrome/common/jstemplate_builder.h" |
22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
23 #include "content/public/browser/interstitial_page.h" | 23 #include "content/public/browser/interstitial_page.h" |
24 #include "content/public/browser/interstitial_page_delegate.h" | 24 #include "content/public/browser/interstitial_page_delegate.h" |
25 #include "content/public/browser/plugin_service.h" | 25 #include "content/public/browser/plugin_service.h" |
26 #include "content/public/browser/render_process_host.h" | 26 #include "content/public/browser/render_process_host.h" |
27 #include "content/public/browser/render_view_host.h" | 27 #include "content/public/browser/render_view_host.h" |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 | 433 |
434 void PDFHasUnsupportedFeature(TabContents* tab) { | 434 void PDFHasUnsupportedFeature(TabContents* tab) { |
435 #if defined(OS_WIN) && defined(ENABLE_PLUGIN_INSTALLATION) | 435 #if defined(OS_WIN) && defined(ENABLE_PLUGIN_INSTALLATION) |
436 // Only works for Windows for now. For Mac, we'll have to launch the file | 436 // Only works for Windows for now. For Mac, we'll have to launch the file |
437 // externally since Adobe Reader doesn't work inside Chrome. | 437 // externally since Adobe Reader doesn't work inside Chrome. |
438 PluginFinder::Get(base::Bind(&GotPluginFinderCallback, | 438 PluginFinder::Get(base::Bind(&GotPluginFinderCallback, |
439 tab->web_contents()->GetRenderProcessHost()->GetID(), | 439 tab->web_contents()->GetRenderProcessHost()->GetID(), |
440 tab->web_contents()->GetRenderViewHost()->GetRoutingID())); | 440 tab->web_contents()->GetRenderViewHost()->GetRoutingID())); |
441 #endif | 441 #endif |
442 } | 442 } |
OLD | NEW |