| Index: third_party/WebKit/Source/core/css/MediaValuesCached.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/MediaValuesCached.cpp b/third_party/WebKit/Source/core/css/MediaValuesCached.cpp
|
| index 3dedbd11e152c4ccac1ab5112bc34900eebc0253..9b3394b7dafdb69434d7f1ec433c36b07a5d9f65 100644
|
| --- a/third_party/WebKit/Source/core/css/MediaValuesCached.cpp
|
| +++ b/third_party/WebKit/Source/core/css/MediaValuesCached.cpp
|
| @@ -100,12 +100,12 @@ bool MediaValuesCached::isSafeToSendToAnotherThread() const
|
| #endif
|
| }
|
|
|
| -int MediaValuesCached::viewportWidth() const
|
| +float MediaValuesCached::viewportWidth() const
|
| {
|
| return m_data.viewportWidth;
|
| }
|
|
|
| -int MediaValuesCached::viewportHeight() const
|
| +float MediaValuesCached::viewportHeight() const
|
| {
|
| return m_data.viewportHeight;
|
| }
|
| @@ -185,12 +185,12 @@ bool MediaValuesCached::hasValues() const
|
| return true;
|
| }
|
|
|
| -void MediaValuesCached::setViewportWidth(int width)
|
| +void MediaValuesCached::setViewportWidth(float width)
|
| {
|
| m_data.viewportWidth = width;
|
| }
|
|
|
| -void MediaValuesCached::setViewportHeight(int height)
|
| +void MediaValuesCached::setViewportHeight(float height)
|
| {
|
| m_data.viewportHeight = height;
|
| }
|
|
|