Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build break after r149004
https://bugs.webkit.org/show_bug.cgi?id=115091

Reviewed by Csaba Osztrogonác.

* WebProcess/WebPage/gtk/LayerTreeHostGtk.cpp:
(WebKit::LayerTreeHostGtk::pageBackgroundTransparencyChanged):
(WebKit): Add dummy method for new virtual method.
* WebProcess/WebPage/gtk/LayerTreeHostGtk.h:
(LayerTreeHostGtk): Ditto.


Canonical link: https://commits.webkit.org/133516@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@149017 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
csaavedra committed Apr 24, 2013
1 parent 05da7b9 commit 2eafcb7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Source/WebKit2/ChangeLog
@@ -1,3 +1,16 @@
2013-04-24 Claudio Saavedra <csaavedra@igalia.com>

Build break after r149004
https://bugs.webkit.org/show_bug.cgi?id=115091

Reviewed by Csaba Osztrogonác.

* WebProcess/WebPage/gtk/LayerTreeHostGtk.cpp:
(WebKit::LayerTreeHostGtk::pageBackgroundTransparencyChanged):
(WebKit): Add dummy method for new virtual method.
* WebProcess/WebPage/gtk/LayerTreeHostGtk.h:
(LayerTreeHostGtk): Ditto.

2013-04-23 Ryuan Choi <ryuan.choi@samsung.com>

[EFL][WK2] Build break after r149004
Expand Down
4 changes: 4 additions & 0 deletions Source/WebKit2/WebProcess/WebPage/gtk/LayerTreeHostGtk.cpp
Expand Up @@ -424,6 +424,10 @@ void LayerTreeHostGtk::setLayerFlushSchedulingEnabled(bool layerFlushingEnabled)
cancelPendingLayerFlush();
}

void LayerTreeHostGtk::pageBackgroundTransparencyChanged()
{
}

void LayerTreeHostGtk::cancelPendingLayerFlush()
{
if (!m_layerFlushTimerCallbackId)
Expand Down
1 change: 1 addition & 0 deletions Source/WebKit2/WebProcess/WebPage/gtk/LayerTreeHostGtk.h
Expand Up @@ -59,6 +59,7 @@ class LayerTreeHostGtk : public LayerTreeHost, WebCore::GraphicsLayerClient {
virtual void setRootCompositingLayer(WebCore::GraphicsLayer*);
virtual void scheduleLayerFlush();
virtual void setLayerFlushSchedulingEnabled(bool layerFlushingEnabled);
virtual void pageBackgroundTransparencyChanged() OVERRIDE;

private:
// LayerTreeHost.
Expand Down

0 comments on commit 2eafcb7

Please sign in to comment.