Changeset 149808 in webkit


Ignore:
Timestamp:
May 9, 2013 8:26:03 AM (11 years ago)
Author:
mifenton@rim.com
Message:

[BlackBerry] Style updates required based on new check-webkit-style
https://bugs.webkit.org/show_bug.cgi?id=115857

Reviewed by Rob Buis.

Update InRegionScrollableArea, TileIndexHash
and TouchEventHandler to match check-webkit-style updates.

  • WebKitSupport/InRegionScrollableArea.cpp:
  • WebKitSupport/TileIndexHash.h:
  • WebKitSupport/TouchEventHandler.cpp:

(BlackBerry::WebKit::TouchEventHandler::drawTapHighlight):

Location:
trunk/Source/WebKit/blackberry
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/ChangeLog

    r149806 r149808  
     12013-05-09  Mike Fenton  <mifenton@rim.com>
     2
     3        [BlackBerry] Style updates required based on new check-webkit-style
     4        https://bugs.webkit.org/show_bug.cgi?id=115857
     5
     6        Reviewed by Rob Buis.
     7
     8        Update InRegionScrollableArea, TileIndexHash
     9        and TouchEventHandler to match check-webkit-style updates.
     10
     11        * WebKitSupport/InRegionScrollableArea.cpp:
     12        * WebKitSupport/TileIndexHash.h:
     13        * WebKitSupport/TouchEventHandler.cpp:
     14        (BlackBerry::WebKit::TouchEventHandler::drawTapHighlight):
     15
    1162013-05-09  Mike Fenton  <mifenton@rim.com>
    217
  • trunk/Source/WebKit/blackberry/WebKitSupport/InRegionScrollableArea.cpp

    r149412 r149808  
    2323#include "Document.h"
    2424#include "Frame.h"
     25#include "InRegionScroller_p.h"
    2526#include "LayerWebKitThread.h"
    26 #include "InRegionScroller_p.h"
    2727#include "RenderBox.h"
    2828#include "RenderLayer.h"
  • trunk/Source/WebKit/blackberry/WebKitSupport/TileIndexHash.h

    r128650 r149808  
    4343    static void constructDeletedValue(TileIndex& slot)
    4444    {
    45         new (&slot) TileIndex(std::numeric_limits<unsigned int>::max() - 1,
    46                               std::numeric_limits<unsigned int>::max() - 1);
     45        new (&slot) TileIndex(std::numeric_limits<unsigned>::max() - 1, std::numeric_limits<unsigned>::max() - 1);
    4746    }
    4847    static bool isDeletedValue(const TileIndex& value)
    4948    {
    50         return value.i() == (std::numeric_limits<unsigned int>::max() - 1)
    51                && value.j() == (std::numeric_limits<unsigned int>::max() - 1);
     49        return value.i() == (std::numeric_limits<unsigned>::max() - 1) && value.j() == (std::numeric_limits<unsigned>::max() - 1);
    5250    }
    5351};
  • trunk/Source/WebKit/blackberry/WebKitSupport/TouchEventHandler.cpp

    r149043 r149808  
    292292
    293293    m_webPage->m_tapHighlight->draw(region,
    294                                     highlightColor.red(), highlightColor.green(), highlightColor.blue(), highlightColor.alpha(),
    295                                     shouldHideTapHighlightRightAfterScrolling);
     294        highlightColor.red(), highlightColor.green(), highlightColor.blue(), highlightColor.alpha(),
     295        shouldHideTapHighlightRightAfterScrolling);
    296296}
    297297
Note: See TracChangeset for help on using the changeset viewer.