| Index: content/child/npapi/webplugin_delegate_impl_android.cc
 | 
| diff --git a/content/child/npapi/webplugin_delegate_impl_android.cc b/content/child/npapi/webplugin_delegate_impl_android.cc
 | 
| index ed562b3624a19517c2fe80d243fffccfcd320863..7458f05110697f3766c587ce8f48b7abeeaf9862 100644
 | 
| --- a/content/child/npapi/webplugin_delegate_impl_android.cc
 | 
| +++ b/content/child/npapi/webplugin_delegate_impl_android.cc
 | 
| @@ -18,10 +18,7 @@ namespace content {
 | 
|  WebPluginDelegateImpl::WebPluginDelegateImpl(
 | 
|      WebPlugin* plugin,
 | 
|      PluginInstance* instance)
 | 
| -    : windowed_handle_(0),
 | 
| -      windowed_did_set_window_(false),
 | 
| -      windowless_(false),
 | 
| -      plugin_(plugin),
 | 
| +    : plugin_(plugin),
 | 
|        instance_(instance),
 | 
|        quirks_(0),
 | 
|        handle_event_depth_(0),
 | 
| @@ -43,22 +40,6 @@ void WebPluginDelegateImpl::PlatformDestroyInstance() {
 | 
|  void WebPluginDelegateImpl::Paint(SkCanvas* canvas, const gfx::Rect& rect) {
 | 
|  }
 | 
|  
 | 
| -bool WebPluginDelegateImpl::WindowedCreatePlugin() {
 | 
| -  return false;
 | 
| -}
 | 
| -
 | 
| -void WebPluginDelegateImpl::WindowedDestroyWindow() {
 | 
| -}
 | 
| -
 | 
| -bool WebPluginDelegateImpl::WindowedReposition(
 | 
| -    const gfx::Rect& window_rect,
 | 
| -    const gfx::Rect& clip_rect) {
 | 
| -  return false;
 | 
| -}
 | 
| -
 | 
| -void WebPluginDelegateImpl::WindowedSetWindow() {
 | 
| -}
 | 
| -
 | 
|  void WebPluginDelegateImpl::WindowlessUpdateGeometry(
 | 
|      const gfx::Rect& window_rect,
 | 
|      const gfx::Rect& clip_rect) {
 | 
| 
 |