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

Unified Diff: pdf/out_of_process_instance.cc

Issue 1161563002: Remove unused in-process pepper APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « pdf/out_of_process_instance.h ('k') | ppapi/api/dev/ppb_scrollbar_dev.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/out_of_process_instance.cc
diff --git a/pdf/out_of_process_instance.cc b/pdf/out_of_process_instance.cc
index 265c53ff473bebe789ffeb73c3a00aaeaa9937e1..c75d04af27f16046468ccaa65f90eef28d739fd3 100644
--- a/pdf/out_of_process_instance.cc
+++ b/pdf/out_of_process_instance.cc
@@ -262,7 +262,6 @@ OutOfProcessInstance::OutOfProcessInstance(PP_Instance instance)
: pp::Instance(instance),
pp::Find_Private(this),
pp::Printing_Dev(this),
- pp::Selection_Dev(this),
cursor_(PP_CURSORTYPE_POINTER),
zoom_(1.0),
device_scale_(1.0),
@@ -627,12 +626,6 @@ pp::Var OutOfProcessInstance::GetLinkAtPosition(
return engine_->GetLinkAtPosition(offset_point);
}
-pp::Var OutOfProcessInstance::GetSelectedText(bool html) {
- if (html)
- return pp::Var();
- return engine_->GetSelectedText();
-}
-
uint32_t OutOfProcessInstance::QuerySupportedPrintOutputFormats() {
return engine_->QuerySupportedPrintOutputFormats();
}
« no previous file with comments | « pdf/out_of_process_instance.h ('k') | ppapi/api/dev/ppb_scrollbar_dev.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698