Changeset 53326 in webkit


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

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

Reviewed by Darin Adler.

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

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 Peer - websockets/WebSocketChannelClient.h:38

  • websockets/WorkerThreadableWebSocketChannel.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53325 r53326  
     12010-01-15  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow custom memory allocation control for Peer class
     6        https://bugs.webkit.org/show_bug.cgi?id=33670
     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 Peer - websockets/WebSocketChannelClient.h:38
     13
     14        * websockets/WorkerThreadableWebSocketChannel.h:
     15
    1162010-01-15  Zoltan Horvath  <zoltan@webkit.org>
    217
  • trunk/WebCore/websockets/WorkerThreadableWebSocketChannel.h

    r52892 r53326  
    7676    // Generated by the bridge.  The Peer and its bridge should have identical
    7777    // lifetimes.
    78     class Peer : public WebSocketChannelClient {
     78    class Peer : public WebSocketChannelClient, public Noncopyable {
    7979    public:
    8080        static Peer* create(RefPtr<ThreadSafeShared<ThreadableWebSocketChannelClientWrapper> > clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol)
Note: See TracChangeset for help on using the changeset viewer.