Chromium Code Reviews| Index: Source/core/page/PageSupplementable.h |
| diff --git a/Source/core/page/PageSupplementable.h b/Source/core/page/PageSupplementable.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..abe36280df9e487c30323cde017f969a2c1d21b7 |
| --- /dev/null |
| +++ b/Source/core/page/PageSupplementable.h |
| @@ -0,0 +1,20 @@ |
| +// 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. |
| + |
| +#ifndef PageSupplementable_h |
| +#define PageSupplementable_h |
| + |
| +#include "core/CoreExport.h" |
| +#include "platform/Supplementable.h" |
| + |
| +namespace blink { |
| + |
| +class Page; |
| + |
| +extern template class CORE_TEMPLATE_EXPORT HeapSupplement<Page>; |
|
tasak
2015/04/22 03:14:48
Since both HeapSupplement<Page> and Supplement<Pag
|
| +extern template class CORE_TEMPLATE_EXPORT Supplement<Page>; |
|
tasak
2015/04/22 03:14:48
To fix the following link errors:
modules.dll.lib(
|
| + |
| +} // namespace blink |
| + |
| +#endif // PageSupplementable_h |