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

Unified Diff: Source/core/events/Event.cpp

Issue 528843002: use c++03 style enum scope (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/Event.cpp
diff --git a/Source/core/events/Event.cpp b/Source/core/events/Event.cpp
index f39236e8772b76a1e573e2c037ca2d2870c99e87..06a00be5de936f979890b3344c886da8e7fd7702 100644
--- a/Source/core/events/Event.cpp
+++ b/Source/core/events/Event.cpp
@@ -225,7 +225,7 @@ EventPath& Event::ensureEventPath()
PassRefPtrWillBeRawPtr<StaticNodeList> Event::path() const
{
if (!m_currentTarget) {
- ASSERT(m_eventPhase == PhaseType::NONE);
+ ASSERT(m_eventPhase == Event::NONE);
if (!m_eventPath) {
// Before dispatching the event
return StaticNodeList::createEmpty();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698