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

Unified Diff: Source/core/html/track/TextTrackCue.h

Issue 16339006: Make sure to use CSSValueID and CSSPropertyID rather than integers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/html/HTMLTableElement.cpp ('k') | Source/core/html/track/TextTrackCue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrackCue.h
diff --git a/Source/core/html/track/TextTrackCue.h b/Source/core/html/track/TextTrackCue.h
index 156db14b6844e273f00fdcf53a2f2ad68f653428..eeb788078acf32fc8aced2461f348d920232d177 100644
--- a/Source/core/html/track/TextTrackCue.h
+++ b/Source/core/html/track/TextTrackCue.h
@@ -158,8 +158,8 @@ public:
std::pair<double, double> getCSSPosition() const;
int getCSSSize() const;
- int getCSSWritingDirection() const;
- int getCSSWritingMode() const;
+ CSSValueID getCSSWritingDirection() const;
+ CSSValueID getCSSWritingMode() const;
enum WritingDirection {
Horizontal,
@@ -266,10 +266,10 @@ private:
bool m_displayTreeShouldChange;
RefPtr<TextTrackCueBox> m_displayTree;
- int m_displayDirection;
+ CSSValueID m_displayDirection;
- int m_displayWritingModeMap[NumberOfWritingDirections];
- int m_displayWritingMode;
+ CSSValueID m_displayWritingModeMap[NumberOfWritingDirections];
+ CSSValueID m_displayWritingMode;
int m_displaySize;
« no previous file with comments | « Source/core/html/HTMLTableElement.cpp ('k') | Source/core/html/track/TextTrackCue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698