| Index: Source/core/html/canvas/WebGLGetInfo.cpp
|
| diff --git a/Source/core/html/canvas/WebGLGetInfo.cpp b/Source/core/html/canvas/WebGLGetInfo.cpp
|
| index 55cead3c16f19454d8f9742339d0d56107a7e481..d4f893bc0d2b5dae0fde276df7c931e5fcc3486e 100644
|
| --- a/Source/core/html/canvas/WebGLGetInfo.cpp
|
| +++ b/Source/core/html/canvas/WebGLGetInfo.cpp
|
| @@ -90,7 +90,7 @@ WebGLGetInfo::WebGLGetInfo(const String& value)
|
| {
|
| }
|
|
|
| -WebGLGetInfo::WebGLGetInfo(unsigned int value)
|
| +WebGLGetInfo::WebGLGetInfo(unsigned value)
|
| : m_type(kTypeUnsignedInt)
|
| , m_bool(false)
|
| , m_float(0)
|
| @@ -234,7 +234,7 @@ const String& WebGLGetInfo::getString() const
|
| return m_string;
|
| }
|
|
|
| -unsigned int WebGLGetInfo::getUnsignedInt() const
|
| +unsigned WebGLGetInfo::getUnsignedInt() const
|
| {
|
| ASSERT(getType() == kTypeUnsignedInt);
|
| return m_unsignedInt;
|
|
|