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

Side by Side Diff: Source/modules/InitModules.cpp

Issue 298893006: Split modules-dependent Event code in core. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « Source/modules/InitModules.h ('k') | Source/modules/modules.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "InitModules.h" 6 #include "InitModules.h"
7 7
8 #include "EventNames.h" 8 #include "EventModulesNames.h"
9 #include "EventTargetModulesNames.h" 9 #include "EventTargetModulesNames.h"
10 #include "EventTargetNames.h"
11 #include "EventTypeNames.h" 10 #include "EventTypeNames.h"
12 11
13 namespace WebCore { 12 namespace WebCore {
14 13
14 void ModulesInitializer::initEventNames()
15 {
16 EventNames::init();
17 EventNames::initModules();
18 }
19
15 void ModulesInitializer::initEventTargetNames() 20 void ModulesInitializer::initEventTargetNames()
16 { 21 {
17 EventTargetNames::init(); 22 EventTargetNames::init();
18 EventTargetNames::initModules(); 23 EventTargetNames::initModules();
19 } 24 }
20 25
21 } // namespace WebCore 26 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/InitModules.h ('k') | Source/modules/modules.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698