OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "config.h" | |
6 #include "web/WebFrameImplBase.h" | |
7 | |
8 #include "platform/heap/Handle.h" | |
9 | |
10 namespace blink { | |
11 | |
12 WebFrameImplBase::~WebFrameImplBase() | |
13 { | |
14 } | |
15 | |
16 #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.
| |
17 DEFINE_TRACE(WebFrameImplBase) | |
18 { | |
19 } | |
20 #endif | |
21 | |
22 } // namespace blink | |
OLD | NEW |