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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 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: third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
index c89f3e55c42d834c8d10f9c261e6abe3c7bce5af..e3379ab148f10935cb9902969a2c24e7d68f01b2 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
@@ -27,7 +27,7 @@
#include "base/gtest_prod_util.h"
#include "bindings/core/v8/ActiveScriptWrappable.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "modules/EventTargetModules.h"
#include "platform/Timer.h"
#include "platform/heap/Handle.h"
@@ -50,7 +50,7 @@ class MODULES_EXPORT RTCDataChannel final
: public EventTargetWithInlineData,
NON_EXPORTED_BASE(public WebRTCDataChannelHandlerClient),
public ActiveScriptWrappable,
- public ActiveDOMObject {
+ public SuspendableObject {
USING_GARBAGE_COLLECTED_MIXIN(RTCDataChannel);
DEFINE_WRAPPERTYPEINFO();
USING_PRE_FINALIZER(RTCDataChannel, dispose);
@@ -104,7 +104,7 @@ class MODULES_EXPORT RTCDataChannel final
const AtomicString& interfaceName() const override;
ExecutionContext* getExecutionContext() const override;
- // ActiveDOMObject
+ // SuspendableObject
void suspend() override;
void resume() override;
void contextDestroyed() override;

Powered by Google App Engine
This is Rietveld 408576698