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

Unified Diff: Source/core/html/HTMLIFrameElement.h

Issue 14054023: Add loadedNonEmptyDocument flag in FrameLoader for Resource Timing (Closed) Base URL: http://chromium.googlesource.com/chromium/blink.git@master
Patch Set: set loadedNonEmptyDocument flag in CachedResourceLoader(Resource Timing related code) Created 7 years, 7 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: Source/core/html/HTMLIFrameElement.h
diff --git a/Source/core/html/HTMLIFrameElement.h b/Source/core/html/HTMLIFrameElement.h
index b352894557d85a796dd18caf03c279e085f69683..074ade6fde09fd616b66d8d3f34d8c27f861cb3a 100644
--- a/Source/core/html/HTMLIFrameElement.h
+++ b/Source/core/html/HTMLIFrameElement.h
@@ -49,7 +49,11 @@ private:
virtual void didRecalcStyle(StyleChange) OVERRIDE;
+ virtual bool loadedNonEmptyDocument() const OVERRIDE{ return m_didLoadNonEmptyDocument; }
+ virtual void didLoadNonEmptyDocument() OVERRIDE{ m_didLoadNonEmptyDocument = true; }
Nate Chapin 2013/05/08 16:06:55 Space after OVERRIDE I believe.
+
AtomicString m_name;
+ bool m_didLoadNonEmptyDocument;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698