Changeset 53325 in webkit


Ignore:
Timestamp:
Jan 15, 2010 12:23:16 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2010-01-15 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Oliver Hunt.

[Qt] Allow custom memory allocation control for GraphicsContextPlatformPrivate class
https://bugs.webkit.org/show_bug.cgi?id=33669

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

class name - instantiated at: WebCore/'location'
class GraphicsContextPlatformPrivate - platform/graphics/qt/GraphicsContextQt.cpp:254

  • platform/graphics/qt/GraphicsContextQt.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53324 r53325  
     12010-01-15  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        [Qt] Allow custom memory allocation control for GraphicsContextPlatformPrivate class
     6        https://bugs.webkit.org/show_bug.cgi?id=33669
     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        class GraphicsContextPlatformPrivate - platform/graphics/qt/GraphicsContextQt.cpp:254
     13
     14        * platform/graphics/qt/GraphicsContextQt.cpp:
     15
    1162010-01-14  Darin Fisher  <darin@chromium.org>
    217
  • trunk/WebCore/platform/graphics/qt/GraphicsContextQt.cpp

    r53246 r53325  
    199199};
    200200
    201 class GraphicsContextPlatformPrivate {
     201class GraphicsContextPlatformPrivate : public Noncopyable {
    202202public:
    203203    GraphicsContextPlatformPrivate(QPainter* painter);
Note: See TracChangeset for help on using the changeset viewer.