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

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

Issue 21735005: Use "int" instead of "long" for bindings where the WebIDL uses "long". (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | Source/core/html/track/TextTrackRegion.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrackRegion.h
diff --git a/Source/core/html/track/TextTrackRegion.h b/Source/core/html/track/TextTrackRegion.h
index 920a54b2330db8b0f2d042bfa1e71ecd3e882410..10af0d443921dc581786fc6f94ba96bee9d33683 100644
--- a/Source/core/html/track/TextTrackRegion.h
+++ b/Source/core/html/track/TextTrackRegion.h
@@ -63,8 +63,8 @@ public:
double width() const { return m_width; }
void setWidth(double, ExceptionCode&);
- long height() const { return m_heightInLines; }
- void setHeight(long, ExceptionCode&);
+ int height() const { return m_heightInLines; }
+ void setHeight(int, ExceptionCode&);
double regionAnchorX() const { return m_regionAnchor.x(); }
void setRegionAnchorX(double, ExceptionCode&);
« no previous file with comments | « no previous file | Source/core/html/track/TextTrackRegion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698