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

Unified Diff: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.h

Issue 1929493002: Remove unnecessary uses of GarbageCollectedFinalized<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add two leftover classes needing same treatment Created 4 years, 8 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
Index: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.h
diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.h b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.h
index a21126bebfc9f223e0c10ac2132daf11b58a95f8..d17a7c0056f1db720e8dceab54cb0ec13143b7d8 100644
--- a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.h
+++ b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.h
@@ -18,7 +18,7 @@ namespace blink {
// but some platforms require to poll to have an accurate reporting. When
// ScreenOrientationDispatcher is listening, that means that the platform should
// be polling if required.
-class ScreenOrientationDispatcher final : public GarbageCollectedFinalized<ScreenOrientationDispatcher>, public PlatformEventDispatcher {
+class ScreenOrientationDispatcher final : public GarbageCollected<ScreenOrientationDispatcher>, public PlatformEventDispatcher {
USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientationDispatcher);
public:
static ScreenOrientationDispatcher& instance();

Powered by Google App Engine
This is Rietveld 408576698