Commit 6f1ad3ee authored by Michael Lippautz's avatar Michael Lippautz Committed by Chromium LUCI CQ

heap: Oilpan library compilation fixes

Bug: 1056170
Change-Id: I467dbaf29f7474550e2fc17b82c6fc7195c4f84e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2627149
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Commit-Queue: Kentaro Hara <haraken@chromium.org>
Auto-Submit: Michael Lippautz <mlippautz@chromium.org>
Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#842963}
parent 7ce0bebc
...@@ -7,14 +7,10 @@ ...@@ -7,14 +7,10 @@
#include <memory> #include <memory>
#include "base/memory/scoped_refptr.h" #include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
namespace blink { namespace blink {
template <typename T>
class Persistent;
template <typename T>
class Member;
template <typename T> template <typename T>
bool DataEquivalent(const T* a, const T* b) { bool DataEquivalent(const T* a, const T* b) {
if (a == b) if (a == b)
......
...@@ -46,7 +46,7 @@ class PLATFORM_EXPORT ActiveScriptWrappableBase : public GarbageCollectedMixin { ...@@ -46,7 +46,7 @@ class PLATFORM_EXPORT ActiveScriptWrappableBase : public GarbageCollectedMixin {
#if BUILDFLAG(USE_V8_OILPAN) #if BUILDFLAG(USE_V8_OILPAN)
namespace cppgc { namespace cppgc {
template <typename T, typename = void> template <typename T, typename Unused>
struct PostConstructionCallbackTrait; struct PostConstructionCallbackTrait;
template <typename T> template <typename T>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment