summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/WebKitNamedFlowCollection.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/WebKitNamedFlowCollection.h')
-rw-r--r--Source/WebCore/dom/WebKitNamedFlowCollection.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebCore/dom/WebKitNamedFlowCollection.h b/Source/WebCore/dom/WebKitNamedFlowCollection.h
index 130c6c8fb..d952e8ed2 100644
--- a/Source/WebCore/dom/WebKitNamedFlowCollection.h
+++ b/Source/WebCore/dom/WebKitNamedFlowCollection.h
@@ -34,6 +34,7 @@
#include <wtf/ListHashSet.h>
#include <wtf/PassRefPtr.h>
#include <wtf/RefCounted.h>
+#include <wtf/Vector.h>
namespace WebCore {
@@ -44,6 +45,7 @@ class WebKitNamedFlowCollection : public RefCounted<WebKitNamedFlowCollection> {
public:
static PassRefPtr<WebKitNamedFlowCollection> create(Document* doc) { return adoptRef(new WebKitNamedFlowCollection(doc)); }
+ Vector<String> namedFlowsNames();
WebKitNamedFlow* flowByName(const String&);
PassRefPtr<WebKitNamedFlow> ensureFlowWithName(const String&);