summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp')
-rw-r--r--Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp b/Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp
index a7b3184..1f28cdf 100644
--- a/Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp
+++ b/Source/WebCore/platform/graphics/android/layers/VideoLayerManager.cpp
@@ -73,7 +73,7 @@ int VideoLayerManager::getButtonSize()
return VIDEO_BUTTON_SIZE;
}
-GLuint VideoLayerManager::createTextureFromImage(int buttonType)
+GLuint VideoLayerManager::createTextureFromImage(RenderSkinMediaButton::MediaButton buttonType)
{
SkRect rect = SkRect(m_buttonRect);
SkBitmap bitmap;
@@ -83,8 +83,7 @@ GLuint VideoLayerManager::createTextureFromImage(int buttonType)
SkCanvas canvas(bitmap);
canvas.drawARGB(0, 0, 0, 0, SkXfermode::kClear_Mode);
- RenderSkinMediaButton::Draw(&canvas, m_buttonRect, buttonType, true, 0,
- false);
+ RenderSkinMediaButton::Draw(&canvas, m_buttonRect, buttonType, true, false);
GLuint texture;
glGenTextures(1, &texture);