Changeset 96352 in webkit


Ignore:
Timestamp:
Sep 29, 2011 1:30:17 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Shrink HTMLAnchorElement on 32-bit.
https://bugs.webkit.org/show_bug.cgi?id=69094

Patch by Andreas Kling <kling@webkit.org> on 2011-09-29
Reviewed by Antti Koivisto.

  • html/HTMLAnchorElement.h: Pack members into a bitfield.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r96351 r96352  
     12011-09-29  Andreas Kling  <kling@webkit.org>
     2
     3        Shrink HTMLAnchorElement on 32-bit.
     4        https://bugs.webkit.org/show_bug.cgi?id=69094
     5
     6        Reviewed by Antti Koivisto.
     7
     8        * html/HTMLAnchorElement.h: Pack members into a bitfield.
     9
    1102011-09-29  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/Source/WebCore/html/HTMLAnchorElement.h

    r91797 r96352  
    127127
    128128    RefPtr<Element> m_rootEditableElementForSelectionOnMouseDown;
    129     bool m_wasShiftKeyDownOnMouseDown;
    130     uint32_t m_linkRelations;
     129    bool m_wasShiftKeyDownOnMouseDown : 1;
     130    uint32_t m_linkRelations : 31;
    131131};
    132132
Note: See TracChangeset for help on using the changeset viewer.