Chromium Code Reviews| Index: Source/core/dom/NamedFlow.h |
| diff --git a/Source/core/dom/NamedFlow.h b/Source/core/dom/NamedFlow.h |
| index 75f2bd5765ac6fa530ed3699271b2fea1803cff8..016a6b2b44f9685bb680539bccffe89916392199 100644 |
| --- a/Source/core/dom/NamedFlow.h |
| +++ b/Source/core/dom/NamedFlow.h |
| @@ -38,6 +38,7 @@ |
| namespace WebCore { |
| +class CSSRegion; |
| class Document; |
| class NamedFlowCollection; |
| class Node; |
| @@ -55,8 +56,8 @@ public: |
| const AtomicString& name() const; |
| bool overset() const; |
| int firstEmptyRegionIndex() const; |
| - PassRefPtr<NodeList> getRegionsByContent(Node*); |
| - PassRefPtr<NodeList> getRegions(); |
| + Vector<RefPtr<CSSRegion>> getRegionsByContent(Node*); |
| + Vector<RefPtr<CSSRegion>> getRegions(); |
|
abarth-chromium
2013/10/25 16:56:20
We still support C++03
|
| PassRefPtr<NodeList> getContent(); |
| virtual const AtomicString& interfaceName() const OVERRIDE; |