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

Unified Diff: chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.cc

Issue 477263003: pdf: Create a separate component for using the pdf pepper plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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
Index: chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.cc
diff --git a/chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.cc b/chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dc5c1dcf4c9c98be6f4d0772951ceace8a4f2058
--- /dev/null
+++ b/chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.cc
@@ -0,0 +1,62 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.h"
+
+#include "chrome/browser/download/download_stats.h"
+#include "chrome/browser/ui/browser.h"
+#include "chrome/browser/ui/browser_finder.h"
+#include "chrome/browser/ui/browser_window.h"
+#include "chrome/browser/ui/location_bar/location_bar.h"
+#include "chrome/browser/ui/pdf/pdf_unsupported_feature.h"
+#include "chrome/browser/ui/tab_contents/core_tab_helper.h"
+
+ChromePDFWebContentsHelperClient::ChromePDFWebContentsHelperClient() {
+}
+
+ChromePDFWebContentsHelperClient::~ChromePDFWebContentsHelperClient() {
+}
+
+void ChromePDFWebContentsHelperClient::UpdateLocationBar(
+ content::WebContents* contents) {
+ Browser* browser = chrome::FindBrowserWithWebContents(contents);
+ if (!browser)
+ return;
+
+ BrowserWindow* window = browser->window();
+ if (!window)
+ return;
+
+ LocationBar* location_bar = window->GetLocationBar();
+ if (!location_bar)
+ return;
+
+ location_bar->UpdateOpenPDFInReaderPrompt();
+}
+
+void ChromePDFWebContentsHelperClient::UpdateContentRestrictions(
+ content::WebContents* contents,
+ int content_restrictions) {
+ CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(contents);
+ // |core_tab_helper| is NULL for WebViewGuest.
+ if (core_tab_helper)
+ core_tab_helper->UpdateContentRestrictions(content_restrictions);
+}
+
+void ChromePDFWebContentsHelperClient::OnPDFHasUnsupportedFeature(
+ content::WebContents* contents) {
+ PDFHasUnsupportedFeature(contents);
+}
+
+void ChromePDFWebContentsHelperClient::OnSaveURL(
+ content::WebContents* contents) {
+ RecordDownloadSource(DOWNLOAD_INITIATED_BY_PDF_SAVE);
+}
+
+void ChromePDFWebContentsHelperClient::OnShowPDFPasswordDialog(
+ content::WebContents* contents,
+ const base::string16& prompt,
+ const pdf::PasswordDialogClosedCallback& callback) {
+ ShowPDFPasswordDialog(contents, prompt, callback);
+}

Powered by Google App Engine
This is Rietveld 408576698