| Index: third_party/WebKit/Source/platform/graphics/ThreadSafeDataTransport.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ThreadSafeDataTransport.h b/third_party/WebKit/Source/platform/graphics/ThreadSafeDataTransport.h
|
| index 9fdea6c0ee2bc0e6fc7d4a7844dd81c2610669a3..6efc8a9c02e01927357ef2827013a375bf6b7b53 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ThreadSafeDataTransport.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/ThreadSafeDataTransport.h
|
| @@ -30,6 +30,7 @@
|
| #include "wtf/OwnPtr.h"
|
| #include "wtf/PassOwnPtr.h"
|
| #include "wtf/RefPtr.h"
|
| +#include "wtf/ThreadSafeRefCounted.h"
|
| #include "wtf/ThreadingPrimitives.h"
|
| #include "wtf/Vector.h"
|
|
|
| @@ -43,7 +44,7 @@ class SharedBuffer;
|
| //
|
| // This class is designed such that there is only one producer and
|
| // one consumer.
|
| -class PLATFORM_EXPORT ThreadSafeDataTransport {
|
| +class PLATFORM_EXPORT ThreadSafeDataTransport : public ThreadSafeRefCounted<ThreadSafeDataTransport> {
|
| public:
|
| ThreadSafeDataTransport();
|
| ~ThreadSafeDataTransport();
|
|
|