Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1010)

Unified Diff: Source/platform/WebThreadPtr.h

Issue 474683003: Not for review - Rebase of crrev.com/62833003 Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/WebThreadOwnPtr.h ('k') | Source/platform/WebThreadRawPtr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 */
« no previous file with comments | « Source/platform/WebThreadOwnPtr.h ('k') | Source/platform/WebThreadRawPtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698