summaryrefslogtreecommitdiff
path: root/Source/WebCore/loader/FrameLoaderStateMachine.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/loader/FrameLoaderStateMachine.h')
-rw-r--r--Source/WebCore/loader/FrameLoaderStateMachine.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/Source/WebCore/loader/FrameLoaderStateMachine.h b/Source/WebCore/loader/FrameLoaderStateMachine.h
index 8bce923e8..714e5d6fa 100644
--- a/Source/WebCore/loader/FrameLoaderStateMachine.h
+++ b/Source/WebCore/loader/FrameLoaderStateMachine.h
@@ -26,9 +26,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef FrameLoaderStateMachine_h
-#define FrameLoaderStateMachine_h
+#pragma once
+#include "PlatformExportMacros.h"
#include <wtf/Noncopyable.h>
namespace WebCore {
@@ -51,11 +51,11 @@ public:
FirstLayoutDone
};
- bool committingFirstRealLoad() const;
+ WEBCORE_EXPORT bool committingFirstRealLoad() const;
bool committedFirstRealDocumentLoad() const;
bool creatingInitialEmptyDocument() const;
- bool isDisplayingInitialEmptyDocument() const;
- bool firstLayoutDone() const;
+ WEBCORE_EXPORT bool isDisplayingInitialEmptyDocument() const;
+ WEBCORE_EXPORT bool firstLayoutDone() const;
void advanceTo(State);
private:
@@ -63,5 +63,3 @@ private:
};
} // namespace WebCore
-
-#endif // FrameLoaderStateMachine_h