Changeset 82798 in webkit


Ignore:
Timestamp:
Apr 3, 2011 8:09:35 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-03 Luke Macpherson <macpherson@chromium.org>

Reviewed by Dimitri Glazkov.

Make CSSStyleApplyProperty non-copyable
https://bugs.webkit.org/show_bug.cgi?id=57738

No new functionality added so no new tests required.

  • css/CSSStyleApplyProperty.h: Added WTF_MAKE_NONCOPYABLE(CSSStyleApplyProperty) to ensure singleton stays single.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r82795 r82798  
     12011-04-03  Luke Macpherson   <macpherson@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Make CSSStyleApplyProperty non-copyable
     6        https://bugs.webkit.org/show_bug.cgi?id=57738
     7
     8        No new functionality added so no new tests required.
     9
     10        * css/CSSStyleApplyProperty.h:
     11        Added WTF_MAKE_NONCOPYABLE(CSSStyleApplyProperty) to ensure singleton stays single.
     12
    1132011-04-03  Dan Bernstein  <mitz@apple.com>
    214
  • trunk/Source/WebCore/css/CSSStyleApplyProperty.h

    r82654 r82798  
    4646
    4747class CSSStyleApplyProperty {
     48    WTF_MAKE_NONCOPYABLE(CSSStyleApplyProperty);
    4849public:
    4950    static const CSSStyleApplyProperty& sharedCSSStyleApplyProperty();
Note: See TracChangeset for help on using the changeset viewer.