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

Unified Diff: components/pdf/renderer/pepper_pdf_host.h

Issue 2455543002: Convert PDF component IPC to mojo. (Closed)
Patch Set: Fix date Created 3 years, 9 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: components/pdf/renderer/pepper_pdf_host.h
diff --git a/components/pdf/renderer/pepper_pdf_host.h b/components/pdf/renderer/pepper_pdf_host.h
index 94e8cc6c25108d9e7d48dfbb928875b10c703e29..db12e267426368caaa1d3777e8eb52c48608ebb6 100644
--- a/components/pdf/renderer/pepper_pdf_host.h
+++ b/components/pdf/renderer/pepper_pdf_host.h
@@ -14,6 +14,7 @@
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/strings/string16.h"
+#include "components/pdf/common/pdf.mojom.h"
#include "ipc/ipc_platform_file.h"
#include "ppapi/c/ppb_image_data.h"
#include "ppapi/c/private/ppb_pdf.h"
@@ -103,9 +104,11 @@ class PepperPDFHost : public ppapi::host::ResourceHost {
content::RenderFrame* GetRenderFrame();
- std::unique_ptr<PdfAccessibilityTree> pdf_accessibility_tree_;
+ mojom::PDFService* GetRemotePDFService();
+ std::unique_ptr<PdfAccessibilityTree> pdf_accessibility_tree_;
content::RendererPpapiHost* const host_;
+ mojom::PDFServiceAssociatedPtr remote_pdf_service_;
DISALLOW_COPY_AND_ASSIGN(PepperPDFHost);
};

Powered by Google App Engine
This is Rietveld 408576698