Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Unified Diff: Source/core/dom/NamedFlowCollection.h

Issue 112843002: Make calls to AtomicString(const String&) explicit in dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/NamedFlowCollection.h
diff --git a/Source/core/dom/NamedFlowCollection.h b/Source/core/dom/NamedFlowCollection.h
index f9c4b9cb446bf4013fb46d5146fac7855d9e008d..13f5c6943aaee9b5e3c5900bb52624f00b57cdb2 100644
--- a/Source/core/dom/NamedFlowCollection.h
+++ b/Source/core/dom/NamedFlowCollection.h
@@ -48,8 +48,8 @@ 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*);

Powered by Google App Engine
This is Rietveld 408576698