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

Unified Diff: public/platform/WebPrivateOwnPtr.h

Issue 16024011: Construct a minimal blink library in-place (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix mac again Created 7 years, 6 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 | « public/platform/WebPoint.h ('k') | public/platform/WebPrivatePtr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebPrivateOwnPtr.h
diff --git a/public/platform/WebPrivateOwnPtr.h b/public/platform/WebPrivateOwnPtr.h
index 4bcabcfe685316b452e589fd980ef1e207aa9dae..6c461cf70f6ea4a76b68a2145dde7e075adcf1b0 100644
--- a/public/platform/WebPrivateOwnPtr.h
+++ b/public/platform/WebPrivateOwnPtr.h
@@ -42,7 +42,7 @@ public:
WebPrivateOwnPtr() : m_ptr(0) {}
~WebPrivateOwnPtr() { WEBKIT_ASSERT(!m_ptr); }
-#if WEBKIT_IMPLEMENTATION
+#if INSIDE_WEBKIT
explicit WebPrivateOwnPtr(T* ptr)
: m_ptr(ptr)
{
@@ -61,7 +61,7 @@ public:
WEBKIT_ASSERT(m_ptr);
return m_ptr;
}
-#endif // WEBKIT_IMPLEMENTATION
+#endif // INSIDE_WEBKIT
private:
T* m_ptr;
« no previous file with comments | « public/platform/WebPoint.h ('k') | public/platform/WebPrivatePtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698