| Index: third_party/WebKit/Source/core/dom/DOMStringList.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMStringList.h b/third_party/WebKit/Source/core/dom/DOMStringList.h
|
| index 5692428c0a4ef8d7a75a1d62c7ace6e7c7a9d445..a48abec76b936d473904c48981619ad967041b45 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMStringList.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMStringList.h
|
| @@ -40,7 +40,7 @@ class ExecutionContext;
|
|
|
| // FIXME: Some consumers of this class may benefit from lazily fetching items rather
|
| // than creating the list statically as is currently the only option.
|
| -class CORE_EXPORT DOMStringList final : public RefCountedWillBeGarbageCollectedFinalized<DOMStringList>, public ScriptWrappable {
|
| +class CORE_EXPORT DOMStringList final : public GarbageCollectedFinalized<DOMStringList>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| // We would like to remove DOMStringList from the platform if possible.
|
| @@ -49,9 +49,9 @@ public:
|
| // what path it should take. http://crbug.com/460726
|
| enum Source { IndexedDB, Location };
|
|
|
| - static PassRefPtrWillBeRawPtr<DOMStringList> create(Source source)
|
| + static RawPtr<DOMStringList> create(Source source)
|
| {
|
| - return adoptRefWillBeNoop(new DOMStringList(source));
|
| + return new DOMStringList(source);
|
| }
|
|
|
| bool isEmpty() const { return m_strings.isEmpty(); }
|
|
|