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

Unified Diff: Source/modules/fetch/Headers.h

Issue 848953003: Drop (empty) virtual destructor from Iterable<> class (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months 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
« no previous file with comments | « Source/core/dom/Iterable.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/Headers.h
diff --git a/Source/modules/fetch/Headers.h b/Source/modules/fetch/Headers.h
index 10cad823e622ecd3c148a26928b712f4655be897..c9d5c426951f6cdb2401e386b493ecb6f2d889c2 100644
--- a/Source/modules/fetch/Headers.h
+++ b/Source/modules/fetch/Headers.h
@@ -19,7 +19,7 @@ class ExceptionState;
class Iterator;
// http://fetch.spec.whatwg.org/#headers-class
-class Headers final : public GarbageCollectedFinalized<Headers>, public ScriptWrappable, public PairIterable<String, String> {
+class Headers final : public GarbageCollected<Headers>, public ScriptWrappable, public PairIterable<String, String> {
DEFINE_WRAPPERTYPEINFO();
public:
enum Guard { ImmutableGuard, RequestGuard, RequestNoCORSGuard, ResponseGuard, NoneGuard };
« no previous file with comments | « Source/core/dom/Iterable.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698