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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.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/mediarecorder/MediaRecorder.h
diff --git a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
index 5b1288eca6504ab351de87fc8b8c503ac5e317cd..4f0ae35e4247d36ce446e1c5257c13177aadaf45 100644
--- a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
+++ b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.h
@@ -6,7 +6,7 @@
#define MediaRecorder_h
#include "bindings/core/v8/ActiveScriptWrappable.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "core/events/EventTarget.h"
#include "modules/EventTargetModules.h"
#include "modules/ModulesExport.h"
@@ -26,7 +26,7 @@ class ExceptionState;
class MODULES_EXPORT MediaRecorder final : public EventTargetWithInlineData,
public WebMediaRecorderHandlerClient,
public ActiveScriptWrappable,
- public ActiveDOMObject {
+ public SuspendableObject {
USING_GARBAGE_COLLECTED_MIXIN(MediaRecorder);
DEFINE_WRAPPERTYPEINFO();
@@ -73,7 +73,7 @@ class MODULES_EXPORT MediaRecorder final : public EventTargetWithInlineData,
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