Commit 9f6474bf authored by dino@apple.com's avatar dino@apple.com

2011-04-05 Dean Jackson <dino@apple.com>

        Reviewed by Simon Fraser.

        Add parentheses around && within || to avoid clang warning.

        * WebProcess/WebPage/DrawingAreaImpl.cpp:
        (WebKit::DrawingAreaImpl::sendDidUpdateBackingStoreState):

git-svn-id: svn://svn.chromium.org/blink/trunk@82974 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent bad73d4d
2011-04-05 Dean Jackson <dino@apple.com>
Reviewed by Simon Fraser.
Add parentheses around && within || to avoid clang warning.
* WebProcess/WebPage/DrawingAreaImpl.cpp:
(WebKit::DrawingAreaImpl::sendDidUpdateBackingStoreState):
2011-04-05 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
......
......@@ -320,7 +320,7 @@ void DrawingAreaImpl::sendDidUpdateBackingStoreState()
#if USE(ACCELERATED_COMPOSITING)
LayerTreeContext layerTreeContext;
if (m_isPaintingSuspended || m_layerTreeHost && !m_layerTreeHost->participatesInDisplay()) {
if (m_isPaintingSuspended || (m_layerTreeHost && !m_layerTreeHost->participatesInDisplay())) {
updateInfo.viewSize = m_webPage->size();
if (m_layerTreeHost) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment