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

Unified Diff: Source/core/dom/Document.h

Issue 806183005: Remove FrameLoader's checkLoadComplete and checkLoadCompleteForThisFrame (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 0aff402c44fde0a81030b35ea53e50273358834f..5fa423c61d91ad4ef086f70ee264ea1d22259482 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -908,7 +908,7 @@ public:
bool loadEventFinished() const { return m_loadEventProgress >= LoadEventCompleted; }
bool unloadStarted() const { return m_loadEventProgress >= PageHideInProgress; }
bool processingBeforeUnload() const { return m_loadEventProgress == BeforeUnloadEventInProgress; }
- void suppressLoadEvent() { m_loadEventProgress = LoadEventCompleted; }
+ void suppressLoadEvent();
void setContainsPlugins() { m_containsPlugins = true; }
bool containsPlugins() const { return m_containsPlugins; }
@@ -981,7 +981,7 @@ public:
bool hasActiveParser();
unsigned activeParserCount() { return m_activeParserCount; }
void incrementActiveParserCount() { ++m_activeParserCount; }
- void decrementActiveParserCount();
+ void decrementActiveParserCount() { --m_activeParserCount; }
void setContextFeatures(ContextFeatures&);
ContextFeatures& contextFeatures() const { return *m_contextFeatures; }

Powered by Google App Engine
This is Rietveld 408576698