diff options
author | Nicolas Roard <nicolas@android.com> | 2011-03-11 16:39:37 -0800 |
---|---|---|
committer | Nicolas Roard <nicolas@android.com> | 2011-03-11 16:39:37 -0800 |
commit | 8b687543dedd030370870c5929312e4d56d85343 (patch) | |
tree | 3e941e40f323db860d9969cea5e43b2a0185a0be /WebKit | |
parent | fbf621e3e563d9ec67107a347931eb573607764d (diff) | |
parent | 43edd45c76afdb151984f72110c8d6fa753eac6f (diff) | |
download | external_webkit-8b687543dedd030370870c5929312e4d56d85343.zip external_webkit-8b687543dedd030370870c5929312e4d56d85343.tar.gz external_webkit-8b687543dedd030370870c5929312e4d56d85343.tar.bz2 |
resolved conflicts for merge of 43edd45c to master
Change-Id: I270cbb054174dd3c2dc4464b484ad2c5a8db2724
Diffstat (limited to 'WebKit')
-rw-r--r-- | WebKit/android/RenderSkinMediaButton.cpp | 2 | ||||
-rw-r--r-- | WebKit/android/RenderSkinMediaButton.h | 2 | ||||
-rw-r--r-- | WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/WebKit/android/RenderSkinMediaButton.cpp b/WebKit/android/RenderSkinMediaButton.cpp index 933b75b..acbc72b 100644 --- a/WebKit/android/RenderSkinMediaButton.cpp +++ b/WebKit/android/RenderSkinMediaButton.cpp @@ -81,7 +81,7 @@ void RenderSkinMediaButton::Init(android::AssetManager* am, String drawableDirec } } -void RenderSkinMediaButton::Draw(SkCanvas* canvas, const IntRect& r, int buttonType) +void RenderSkinMediaButton::Draw(SkCanvas* canvas, const IntRect& r, int buttonType, bool translucent) { // If we failed to decode, do nothing. This way the browser still works, // and webkit will still draw the label and layout space for us. diff --git a/WebKit/android/RenderSkinMediaButton.h b/WebKit/android/RenderSkinMediaButton.h index b4e99f4..8f5feae 100644 --- a/WebKit/android/RenderSkinMediaButton.h +++ b/WebKit/android/RenderSkinMediaButton.h @@ -44,7 +44,7 @@ public: * Draw the skin to the canvas, using the rectangle for its bounds and the * State to determine which skin to use, i.e. focused or not focused. */ - static void Draw(SkCanvas* , const IntRect& , int buttonType); + static void Draw(SkCanvas* , const IntRect& , int buttonType, bool translucent = false); /** * Button types */ diff --git a/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp b/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp index e628ea1..8f84c2f 100644 --- a/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp +++ b/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp @@ -399,6 +399,8 @@ public: } bool hasAudio() { return true; } + bool hasVideo() { return false; } + bool suppportsFullscreen() { return false; } float maxTimeSeekable() const { |