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

Side by Side Diff: Source/platform/WebThreadRawPtr.h

Issue 474683003: Not for review - Rebase of crrev.com/62833003 Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/WebThreadPtr.h ('k') | Source/platform/WebThreadSupportingGC.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef WEBTHREADRAWPTR
2 #define WEBTHREADRAWPTR
3
4 namespace blink {
5
6 class WebThreadRawPtr : public WebThreadPtr {
7 public:
8 WebThreadRawPtr(WebThread* t) : m_ptr(t) {}
9 virtual WebThread& operator*() const { return *m_ptr; }
10 virtual WebThread* operator->() const { return m_ptr; }
11
12 private:
13 WebThread* m_ptr;
14 };
15
16 }
17
18 #endif /* ifndef WEBTHREADRAWPTR */
OLDNEW
« no previous file with comments | « Source/platform/WebThreadPtr.h ('k') | Source/platform/WebThreadSupportingGC.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698