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

Unified Diff: third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp

Issue 2578193004: Remove ActiveScriptWrappableBase::m_scriptWrappable (Closed)
Patch Set: temp 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/imagecapture/ImageCapture.cpp
diff --git a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
index 1c2b684c8afbe32b6ec8ed3ac8244b1718eebe4b..cde4775dbe452f320fde6e802437e560c7abf465 100644
--- a/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
+++ b/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
@@ -268,9 +268,7 @@ ScriptPromise ImageCapture::grabFrame(ScriptState* scriptState,
}
ImageCapture::ImageCapture(ExecutionContext* context, MediaStreamTrack* track)
- : ActiveScriptWrappable(this),
- ContextLifecycleObserver(context),
- m_streamTrack(track) {
+ : ContextLifecycleObserver(context), m_streamTrack(track) {
DCHECK(m_streamTrack);
DCHECK(!m_service.is_bound());

Powered by Google App Engine
This is Rietveld 408576698