| Index: third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| index c806ccf5bb2817eaa64aadf0cb45cbf50f1595bb..05af0281a11ee6793a7ff664381e46ec867e3217 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| @@ -8116,8 +8116,8 @@ namespace {
|
|
|
| class TestFullscreenWebLayerTreeView : public WebLayerTreeView {
|
| public:
|
| - void setHasTransparentBackground(bool value) override {
|
| - hasTransparentBackground = value;
|
| + void setBackgroundColor(blink::WebColor color) override {
|
| + hasTransparentBackground = SkColorGetA(color) < SK_AlphaOPAQUE;
|
| }
|
| bool hasTransparentBackground = false;
|
| };
|
|
|