Changeset 64724 in webkit


Ignore:
Timestamp:
Aug 5, 2010 2:06:01 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2010-08-05 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Simon Hausmann.

Allow custom memory allocation control for DoctypeData class
https://bugs.webkit.org/show_bug.cgi?id=43343

Inherits the following class from Noncopyable because it is
instantiated by 'new' and no need to be copyable:

class name - instantiated at: WebCore/'location'
DoctypeData - html/HTMLToken.h:113

  • html/HTMLToken.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64723 r64724  
     12010-08-05  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Allow custom memory allocation control for DoctypeData class
     6        https://bugs.webkit.org/show_bug.cgi?id=43343
     7
     8        Inherits the following class from Noncopyable because it is
     9        instantiated by 'new' and no need to be copyable:
     10
     11        class name  - instantiated at: WebCore/'location'
     12        DoctypeData - html/HTMLToken.h:113
     13
     14        * html/HTMLToken.h:
     15
    1162010-08-05  François Sausset  <sausset@gmail.com>
    217
  • trunk/WebCore/html/HTMLToken.h

    r64010 r64724  
    263263    friend class AtomicHTMLToken;
    264264
    265     class DoctypeData {
     265    class DoctypeData : public Noncopyable {
    266266    public:
    267267        DoctypeData()
Note: See TracChangeset for help on using the changeset viewer.