| Index: webkit/glue/plugins/webplugin_impl.cc
|
| ===================================================================
|
| --- webkit/glue/plugins/webplugin_impl.cc (revision 52332)
|
| +++ webkit/glue/plugins/webplugin_impl.cc (working copy)
|
| @@ -449,7 +449,6 @@
|
| delegate_->SetZoomFactor(scale, text_only);
|
| }
|
|
|
| -#if defined(WEBPLUGIN_FIND_HAS_RETURN_TYPE)
|
| bool WebPluginImpl::startFind(const WebKit::WebString& search_text,
|
| bool case_sensitive,
|
| int identifier) {
|
| @@ -457,19 +456,7 @@
|
| return false;
|
| return delegate_->StartFind(search_text, case_sensitive, identifier);
|
| }
|
| -#else
|
| -bool WebPluginImpl::supportsFind() {
|
| - return true;
|
| -}
|
|
|
| -void WebPluginImpl::startFind(const WebString& search_text,
|
| - bool case_sensitive,
|
| - int identifier) {
|
| - if (delegate_)
|
| - delegate_->StartFind(search_text, case_sensitive, identifier);
|
| -}
|
| -#endif
|
| -
|
| void WebPluginImpl::selectFindResult(bool forward) {
|
| if (delegate_)
|
| delegate_->SelectFindResult(forward);
|
|
|