| 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; }
|
|
|