diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-08 20:33:01 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-08 20:33:01 +0000 |
commit | 0fdbf8c361ea8b3a51c9c81b9e90da145d357a3c (patch) | |
tree | d9816c6046fab903f2695301e13eded622422626 /webkit/glue/plugins/pepper_plugin_delegate.h | |
parent | f51ffcf1fa06f12c96cc3bcb6c0659c65371fe81 (diff) | |
download | chromium_src-0fdbf8c361ea8b3a51c9c81b9e90da145d357a3c.zip chromium_src-0fdbf8c361ea8b3a51c9c81b9e90da145d357a3c.tar.gz chromium_src-0fdbf8c361ea8b3a51c9c81b9e90da145d357a3c.tar.bz2 |
Chrome side of making RenderView not special case PluginDocument and making the WebPlugin API more like WebView.
Review URL: http://codereview.chromium.org/2827047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51886 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/pepper_plugin_delegate.h')
-rw-r--r-- | webkit/glue/plugins/pepper_plugin_delegate.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/webkit/glue/plugins/pepper_plugin_delegate.h b/webkit/glue/plugins/pepper_plugin_delegate.h index c00a9b3..ffc9d52 100644 --- a/webkit/glue/plugins/pepper_plugin_delegate.h +++ b/webkit/glue/plugins/pepper_plugin_delegate.h @@ -44,6 +44,14 @@ class PluginDelegate { // The caller will own the pointer returned from this. virtual PlatformImage2D* CreateImage2D(int width, int height) = 0; + + // Notifies that the number of find results has changed. + virtual void DidChangeNumberOfFindResults(int identifier, + int total, + bool final_result) = 0; + + // Notifies that the index of the currently selected item has been updated. + virtual void DidChangeSelectedFindResult(int identifier, int index) = 0; }; } // namespace pepper |