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

Unified Diff: webkit/glue/plugins/pepper_plugin_instance.cc

Issue 2827047: Make RenderView call the plugin through WebKit::WebPlugin (instead of casting... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: compile until webkit is rolled Created 10 years, 5 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 | « webkit/glue/plugins/pepper_plugin_instance.h ('k') | webkit/glue/plugins/pepper_webplugin_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_plugin_instance.cc
===================================================================
--- webkit/glue/plugins/pepper_plugin_instance.cc (revision 51864)
+++ webkit/glue/plugins/pepper_plugin_instance.cc (working copy)
@@ -86,7 +86,8 @@
module_(module),
instance_interface_(instance_interface),
container_(NULL),
- full_frame_(false) {
+ full_frame_(false),
+ find_identifier_(-1) {
DCHECK(delegate);
module_->InstanceCreated(this);
delegate_->InstanceCreated(this);
@@ -245,4 +246,34 @@
device_context_2d_->ViewFlushedPaint();
}
+string16 PluginInstance::GetSelectedText(bool html) {
+ // TODO: implement me
+ return string16();
+}
+
+void PluginInstance::Zoom(float factor, bool text_only) {
+ // TODO: implement me
+}
+
+bool PluginInstance::SupportsFind() {
+ // TODO: implement me
+ return false;
+}
+
+void PluginInstance::StartFind(const string16& search_text,
+ bool case_sensitive,
+ int identifier) {
+ find_identifier_ = identifier;
+ // TODO: implement me
+}
+
+void PluginInstance::SelectFindResult(bool forward) {
+ // TODO: implement me
+}
+
+void PluginInstance::StopFind() {
+ find_identifier_ = -1;
+ // TODO: implement me
+}
+
} // namespace pepper
« no previous file with comments | « webkit/glue/plugins/pepper_plugin_instance.h ('k') | webkit/glue/plugins/pepper_webplugin_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698