Changeset 152465 in webkit


Ignore:
Timestamp:
Jul 8, 2013 2:05:34 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Remove unused variables in FocusCandidate.
https://bugs.webkit.org/show_bug.cgi?id=118449

Patch by Changhun Kang <temoochin@company100.net> on 2013-07-06
Reviewed by Antonio Gomes.

The variables for parent in FocusCandidate are not used anymore.

No new tests. No change in behavior.

  • page/SpatialNavigation.cpp:

(WebCore::FocusCandidate::FocusCandidate):

  • page/SpatialNavigation.h:

(WebCore::FocusCandidate::FocusCandidate):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152464 r152465  
     12013-07-06 Changhun Kang <temoochin@company100.net>
     2
     3        Remove unused variables in FocusCandidate.
     4        https://bugs.webkit.org/show_bug.cgi?id=118449
     5
     6        Reviewed by Antonio Gomes.
     7
     8        The variables for parent in FocusCandidate are not used anymore.
     9
     10        No new tests. No change in behavior.
     11
     12        * page/SpatialNavigation.cpp:
     13        (WebCore::FocusCandidate::FocusCandidate):
     14        * page/SpatialNavigation.h:
     15        (WebCore::FocusCandidate::FocusCandidate):
     16
    1172013-07-08  Chris Fleizach  <cfleizach@apple.com>
    218
  • trunk/Source/WebCore/page/SpatialNavigation.cpp

    r151996 r152465  
    6161    , enclosingScrollableBox(0)
    6262    , distance(maxDistance())
    63     , parentDistance(maxDistance())
    6463    , alignment(None)
    65     , parentAlignment(None)
    6664    , isOffscreen(true)
    6765    , isOffscreenAfterScrolling(true)
  • trunk/Source/WebCore/page/SpatialNavigation.h

    r133779 r152465  
    106106        , enclosingScrollableBox(0)
    107107        , distance(maxDistance())
    108         , parentDistance(maxDistance())
    109108        , alignment(None)
    110         , parentAlignment(None)
    111109        , isOffscreen(true)
    112110        , isOffscreenAfterScrolling(true)
     
    128126    Node* enclosingScrollableBox;
    129127    long long distance;
    130     long long parentDistance;
    131128    RectsAlignment alignment;
    132     RectsAlignment parentAlignment;
    133129    LayoutRect rect;
    134130    bool isOffscreen;
Note: See TracChangeset for help on using the changeset viewer.