Chromium Code Reviews| Index: content/public/browser/web_contents_observer.h |
| diff --git a/content/public/browser/web_contents_observer.h b/content/public/browser/web_contents_observer.h |
| index 9dc5fb42fb23e27409fafc379be01f5c4c730976..6f49e9133e3137ebe0b0d4e2d21a5c5a21974d8d 100644 |
| --- a/content/public/browser/web_contents_observer.h |
| +++ b/content/public/browser/web_contents_observer.h |
| @@ -254,6 +254,9 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener, |
| virtual void WasShown() {} |
| virtual void WasHidden() {} |
| + // Invoked when the main frame changes size. |
|
Avi (use Gerrit)
2015/01/16 20:01:45
"This method is invoked..." to match the other com
Evan Stade
2015/01/16 20:29:14
or "This methods is invoked" to match the one belo
|
| + virtual void MainFrameWasResized() {} |
| + |
| // This methods is invoked when the title of the WebContents is set. If the |
| // title was explicitly set, |explicit_set| is true, otherwise the title was |
| // synthesized and |explicit_set| is false. |