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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositorMutation.h

Issue 2080623002: Revert "Remove OwnPtr from Blink." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/platform/graphics/CompositorMutation.h
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutation.h b/third_party/WebKit/Source/platform/graphics/CompositorMutation.h
index b712cc8c7a5d5ea021b3c1b1168938bb0c865c0e..971540af3407939f5dabee46ae6a58d93a38ce1d 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutation.h
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutation.h
@@ -8,7 +8,6 @@
#include "platform/graphics/CompositorMutableProperties.h"
#include "third_party/skia/include/core/SkMatrix44.h"
#include "wtf/HashMap.h"
-#include <memory>
namespace blink {
@@ -54,7 +53,7 @@ private:
};
struct CompositorMutations {
- HashMap<uint64_t, std::unique_ptr<CompositorMutation>> map;
+ HashMap<uint64_t, OwnPtr<CompositorMutation>> map;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698