Chromium Code Reviews| Index: third_party/WebKit/Source/web/WebFrameImplBase.cpp |
| diff --git a/third_party/WebKit/Source/web/WebFrameImplBase.cpp b/third_party/WebKit/Source/web/WebFrameImplBase.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c7e9b5b979f540d0a38c888987c2564744d134ad |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/web/WebFrameImplBase.cpp |
| @@ -0,0 +1,22 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "config.h" |
| +#include "web/WebFrameImplBase.h" |
| + |
| +#include "platform/heap/Handle.h" |
| + |
| +namespace blink { |
| + |
| +WebFrameImplBase::~WebFrameImplBase() |
| +{ |
| +} |
| + |
| +#if ENABLE(OILPAN) |
|
haraken
2015/11/24 02:30:53
I guess ENABLE(OILPAN) won't be needed.
dcheng
2015/11/24 07:50:24
Done.
|
| +DEFINE_TRACE(WebFrameImplBase) |
| +{ |
| +} |
| +#endif |
| + |
| +} // namespace blink |