Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / NamedFlowCollection.h
index f9c4b9c..881cd5d 100644 (file)
@@ -43,13 +43,13 @@ namespace WebCore {
 class Document;
 class DOMNamedFlowCollection;
 
-class NamedFlowCollection : public RefCounted<NamedFlowCollection>, public DocumentLifecycleObserver {
+class NamedFlowCollection FINAL : public RefCounted<NamedFlowCollection>, public DocumentLifecycleObserver {
 public:
     static PassRefPtr<NamedFlowCollection> create(Document* doc) { return adoptRef(new NamedFlowCollection(doc)); }
 
     Vector<RefPtr<NamedFlow> > namedFlows();
-    NamedFlow* flowByName(const String&);
-    PassRefPtr<NamedFlow> ensureFlowWithName(const String&);
+    NamedFlow* flowByName(const AtomicString&);
+    PassRefPtr<NamedFlow> ensureFlowWithName(const AtomicString&);
 
     void discardNamedFlow(NamedFlow*);