Index: Source/core/Init.h |
diff --git a/Source/core/Init.h b/Source/core/Init.h |
index 3579688d5c74865fd0be1d202dbd2ffad5333b9d..d664bf18c805eefae8902dc5531f98707adf9a88 100644 |
--- a/Source/core/Init.h |
+++ b/Source/core/Init.h |
@@ -37,17 +37,17 @@ class CoreInitializer { |
public: |
CoreInitializer() : m_isInited(false) { } |
// Should be called by clients before trying to create Frames. |
- void init(); |
- |
- virtual void registerEventFactory(); |
- virtual void initEventNames(); |
- virtual void initEventTargetNames(); |
- virtual void initBindings() { } |
+ virtual void init(); |
// FIXME: Why is this function static? |
static void shutdown(); |
+protected: |
+ bool isInitialized() const { return m_isInited; } |
+ |
private: |
+ void registerEventFactory(); |
+ |
bool m_isInited; |
}; |