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

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 deb721a5197fba62dd49aeba883f782de5281b3e..17880e143281327f3f832ad99df96d85b206fde9 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -910,7 +910,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; }
@@ -983,7 +983,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