| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ |
| 7 | 7 |
| 8 #include "base/process/kill.h" | 8 #include "base/process/kill.h" |
| 9 #include "base/process/process_handle.h" | 9 #include "base/process/process_handle.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 virtual void DidGetUserGesture() {} | 247 virtual void DidGetUserGesture() {} |
| 248 | 248 |
| 249 // This method is invoked when a RenderViewHost of this WebContents was | 249 // This method is invoked when a RenderViewHost of this WebContents was |
| 250 // configured to ignore UI events, and an UI event took place. | 250 // configured to ignore UI events, and an UI event took place. |
| 251 virtual void DidGetIgnoredUIEvent() {} | 251 virtual void DidGetIgnoredUIEvent() {} |
| 252 | 252 |
| 253 // These methods are invoked every time the WebContents changes visibility. | 253 // These methods are invoked every time the WebContents changes visibility. |
| 254 virtual void WasShown() {} | 254 virtual void WasShown() {} |
| 255 virtual void WasHidden() {} | 255 virtual void WasHidden() {} |
| 256 | 256 |
| 257 // Invoked when the main frame changes size. |
| 258 virtual void MainFrameWasResized() {} |
| 259 |
| 257 // This methods is invoked when the title of the WebContents is set. If the | 260 // This methods is invoked when the title of the WebContents is set. If the |
| 258 // title was explicitly set, |explicit_set| is true, otherwise the title was | 261 // title was explicitly set, |explicit_set| is true, otherwise the title was |
| 259 // synthesized and |explicit_set| is false. | 262 // synthesized and |explicit_set| is false. |
| 260 virtual void TitleWasSet(NavigationEntry* entry, bool explicit_set) {} | 263 virtual void TitleWasSet(NavigationEntry* entry, bool explicit_set) {} |
| 261 | 264 |
| 262 virtual void AppCacheAccessed(const GURL& manifest_url, | 265 virtual void AppCacheAccessed(const GURL& manifest_url, |
| 263 bool blocked_by_policy) {} | 266 bool blocked_by_policy) {} |
| 264 | 267 |
| 265 // Notification that a plugin has crashed. | 268 // Notification that a plugin has crashed. |
| 266 // |plugin_pid| is the process ID identifying the plugin process. Note that | 269 // |plugin_pid| is the process ID identifying the plugin process. Note that |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 void ResetWebContents(); | 360 void ResetWebContents(); |
| 358 | 361 |
| 359 WebContentsImpl* web_contents_; | 362 WebContentsImpl* web_contents_; |
| 360 | 363 |
| 361 DISALLOW_COPY_AND_ASSIGN(WebContentsObserver); | 364 DISALLOW_COPY_AND_ASSIGN(WebContentsObserver); |
| 362 }; | 365 }; |
| 363 | 366 |
| 364 } // namespace content | 367 } // namespace content |
| 365 | 368 |
| 366 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ | 369 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ |
| OLD | NEW |