| Index: Source/platform/WebThreadPtr.h
|
| diff --git a/Source/platform/WebThreadPtr.h b/Source/platform/WebThreadPtr.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d1ede843225781ca476a2a9ed040a9c6f32a3de8
|
| --- /dev/null
|
| +++ b/Source/platform/WebThreadPtr.h
|
| @@ -0,0 +1,17 @@
|
| +#ifndef WEBTHREADPTR
|
| +#define WEBTHREADPTR
|
| +
|
| +namespace blink {
|
| +
|
| +class WebThread;
|
| +
|
| +class WebThreadPtr {
|
| + public:
|
| + virtual WebThread& operator*() const = 0;
|
| + virtual WebThread* operator->() const = 0;
|
| + virtual void clear() {}
|
| +};
|
| +
|
| +}
|
| +
|
| +#endif /* ifndef WEBTHREADPTR */
|
|
|