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

Unified Diff: Source/modules/InitModules.h

Issue 464043002: Refactor module initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed one-line functions and added isInitialized Created 6 years, 4 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
« no previous file with comments | « Source/core/Init.cpp ('k') | Source/modules/InitModules.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/InitModules.h
diff --git a/Source/modules/InitModules.h b/Source/modules/InitModules.h
index 024e761f6c6ec8f048df081fa0d67d6c2a9f5112..52067d5b75998656fc53d832dca19e810412df8f 100644
--- a/Source/modules/InitModules.h
+++ b/Source/modules/InitModules.h
@@ -6,23 +6,14 @@
#define InitModules_h
#include "core/Init.h"
-#include "platform/heap/Handle.h"
namespace blink {
-class Event;
-class ExceptionState;
-
class ModulesInitializer : public CoreInitializer {
public:
- virtual void registerEventFactory() OVERRIDE;
- virtual void initEventNames() OVERRIDE;
- virtual void initEventTargetNames() OVERRIDE;
- virtual void initBindings() OVERRIDE;
+ virtual void init() OVERRIDE;
};
-PassRefPtrWillBeRawPtr<Event> createEventModules(const String& eventType, ExceptionState&);
cmumford 2014/08/12 22:26:35 It looks like createEventModules was deleted in r1
-
} // namespace blink
#endif // InitModules_h
« no previous file with comments | « Source/core/Init.cpp ('k') | Source/modules/InitModules.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698