| Index: content/public/browser/web_contents_view_delegate.h
|
| diff --git a/content/public/browser/web_contents_view_delegate.h b/content/public/browser/web_contents_view_delegate.h
|
| index ecbd0ff968ae1cd3170c3175283aaea49434814b..9e5f40b7f9ab51c29821579bc7b3860ad70f408e 100644
|
| --- a/content/public/browser/web_contents_view_delegate.h
|
| +++ b/content/public/browser/web_contents_view_delegate.h
|
| @@ -47,12 +47,12 @@ class CONTENT_EXPORT WebContentsViewDelegate {
|
| const ContextMenuParams& params);
|
|
|
| // These methods allow the embedder to intercept a WebContentsView's
|
| - // implementation of these methods. See the WebContentsView interface
|
| - // documentation for more information about these methods.
|
| - virtual void StoreFocus();
|
| - virtual void RestoreFocus();
|
| + // implementation of these methods by returning true. See the WebContentsView
|
| + // interface documentation for more information about these methods.
|
| + virtual bool StoreFocus();
|
| + virtual bool RestoreFocus();
|
| virtual bool Focus();
|
| - virtual void TakeFocus(bool reverse);
|
| + virtual bool TakeFocus(bool reverse);
|
| virtual void SizeChanged(const gfx::Size& size);
|
|
|
| // Shows a popup window containing the |zoomed_bitmap| of web content with
|
|
|