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

Unified Diff: Source/core/dom/StyleChangeReason.cpp

Issue 1013393004: Eliminate TextTrackCue::updateDisplayTree() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: coerce m_isPastNode to bool Created 5 years, 9 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/dom/StyleChangeReason.h ('k') | Source/core/html/track/CueTimeline.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StyleChangeReason.cpp
diff --git a/Source/core/dom/StyleChangeReason.cpp b/Source/core/dom/StyleChangeReason.cpp
index c73f422acdffd34bd703a239c07df414efd69e2b..e3a12e6ad8b335b24368f62624c9df2dfe9081a9 100644
--- a/Source/core/dom/StyleChangeReason.cpp
+++ b/Source/core/dom/StyleChangeReason.cpp
@@ -50,6 +50,7 @@ DEFINE_GLOBAL(AtomicString, Active)
DEFINE_GLOBAL(AtomicString, Disabled)
DEFINE_GLOBAL(AtomicString, Focus)
DEFINE_GLOBAL(AtomicString, Hover)
+DEFINE_GLOBAL(AtomicString, Past)
DEFINE_GLOBAL(AtomicString, Unresolved)
void init()
@@ -60,6 +61,7 @@ void init()
new (NotNull, (void*)&Disabled) AtomicString(":disabled", AtomicString::ConstructFromLiteral);
new (NotNull, (void*)&Focus) AtomicString(":focus", AtomicString::ConstructFromLiteral);
new (NotNull, (void*)&Hover) AtomicString(":hover", AtomicString::ConstructFromLiteral);
+ new (NotNull, (void*)&Past) AtomicString(":past", AtomicString::ConstructFromLiteral);
new (NotNull, (void*)&Unresolved) AtomicString(":unresolved", AtomicString::ConstructFromLiteral);
}
« no previous file with comments | « Source/core/dom/StyleChangeReason.h ('k') | Source/core/html/track/CueTimeline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698