Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1221)

Unified Diff: content/public/browser/web_contents.h

Issue 10911008: Avoid generating thumbnails while WebContents is destructed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 77a1ef7369c0f80130bf67d8456e7e3c2978607e..2509c4f51c8512a52b2672c792c598ac88594b30 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -183,19 +183,17 @@ class WebContents : public PageNavigator,
// This flag indicates whether the WebContents is currently being
// screenshotted.
- virtual void SetCapturingContents(bool cap) = 0;
+ virtual void SetCapturingContents(bool cap) = 0;
// Indicates whether this tab should be considered crashed. The setter will
// also notify the delegate when the flag is changed.
virtual bool IsCrashed() const = 0;
virtual void SetIsCrashed(base::TerminationStatus status, int error_code) = 0;
- virtual base::TerminationStatus GetCrashedStatus() const = 0;
+ virtual base::TerminationStatus GetCrashedStatus() const = 0;
// Whether the tab is in the process of being destroyed.
- // Added as a tentative work-around for focus related bug #4633. This allows
- // us not to store focus when a tab is being closed.
- virtual bool IsBeingDestroyed() const = 0;
+ virtual bool IsBeingDestroyed() const = 0;
// Convenience method for notifying the delegate of a navigation state
// change. See InvalidateType enum.

Powered by Google App Engine
This is Rietveld 408576698