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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h

Issue 1497683002: Make platform/graphics to use USING_FAST_MALLOC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
Index: third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h b/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
index d5e899d6575cf8c7eb7dd041c3552980cce35910..98e6a24d89d57e36f94d02841cdaa927e7018346 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPathRecorder.h
@@ -7,6 +7,8 @@
#include "platform/graphics/Path.h"
#include "platform/graphics/paint/DisplayItemClient.h"
+#include "wtf/Allocator.h"
+#include "wtf/Noncopyable.h"
namespace blink {
@@ -14,6 +16,7 @@ class GraphicsContext;
class PLATFORM_EXPORT ClipPathRecorder {
USING_FAST_MALLOC(ClipPathRecorder);
+ WTF_MAKE_NONCOPYABLE(ClipPathRecorder);
public:
ClipPathRecorder(GraphicsContext&, const DisplayItemClientWrapper&, const Path&);
~ClipPathRecorder();

Powered by Google App Engine
This is Rietveld 408576698