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

Side by Side Diff: chrome/browser/ui/pdf/pdf_unsupported_feature.cc

Issue 10933044: Move chrome/browser/plugin_* to chrome/browser/plugins/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@remove_plugin_group
Patch Set: . Created 8 years, 3 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 unified diff | Download patch
OLDNEW
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/api/infobars/confirm_infobar_delegate.h"
12 #include "chrome/browser/chrome_plugin_service_filter.h" 12 #include "chrome/browser/chrome_plugin_service_filter.h"
13 #include "chrome/browser/infobars/infobar_tab_helper.h" 13 #include "chrome/browser/infobars/infobar_tab_helper.h"
14 #include "chrome/browser/lifetime/application_lifetime.h" 14 #include "chrome/browser/lifetime/application_lifetime.h"
15 #include "chrome/browser/plugin_finder.h" 15 #include "chrome/browser/plugins/plugin_finder.h"
16 #include "chrome/browser/plugin_installer.h" 16 #include "chrome/browser/plugins/plugin_installer.h"
17 #include "chrome/browser/plugin_prefs.h" 17 #include "chrome/browser/plugins/plugin_prefs.h"
18 #include "chrome/browser/prefs/pref_service.h" 18 #include "chrome/browser/prefs/pref_service.h"
19 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/renderer_preferences_util.h" 20 #include "chrome/browser/renderer_preferences_util.h"
21 #include "chrome/browser/tab_contents/tab_util.h" 21 #include "chrome/browser/tab_contents/tab_util.h"
22 #include "chrome/browser/ui/pdf/open_pdf_in_reader_prompt_delegate.h" 22 #include "chrome/browser/ui/pdf/open_pdf_in_reader_prompt_delegate.h"
23 #include "chrome/browser/ui/pdf/pdf_tab_helper.h" 23 #include "chrome/browser/ui/pdf/pdf_tab_helper.h"
24 #include "chrome/browser/ui/tab_contents/tab_contents.h" 24 #include "chrome/browser/ui/tab_contents/tab_contents.h"
25 #include "chrome/common/chrome_content_client.h" 25 #include "chrome/common/chrome_content_client.h"
26 #include "chrome/common/jstemplate_builder.h" 26 #include "chrome/common/jstemplate_builder.h"
27 #include "chrome/common/pref_names.h" 27 #include "chrome/common/pref_names.h"
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 411
412 void PDFHasUnsupportedFeature(content::WebContents* web_contents) { 412 void PDFHasUnsupportedFeature(content::WebContents* web_contents) {
413 #if defined(OS_WIN) && defined(ENABLE_PLUGIN_INSTALLATION) 413 #if defined(OS_WIN) && defined(ENABLE_PLUGIN_INSTALLATION)
414 // Only works for Windows for now. For Mac, we'll have to launch the file 414 // Only works for Windows for now. For Mac, we'll have to launch the file
415 // externally since Adobe Reader doesn't work inside Chrome. 415 // externally since Adobe Reader doesn't work inside Chrome.
416 PluginFinder::Get(base::Bind(&GotPluginFinderCallback, 416 PluginFinder::Get(base::Bind(&GotPluginFinderCallback,
417 web_contents->GetRenderProcessHost()->GetID(), 417 web_contents->GetRenderProcessHost()->GetID(),
418 web_contents->GetRenderViewHost()->GetRoutingID())); 418 web_contents->GetRenderViewHost()->GetRoutingID()));
419 #endif 419 #endif
420 } 420 }
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/plugin_info_message_filter.cc ('k') | chrome/browser/ui/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698