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

Unified Diff: Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.cpp

Issue 15236002: WebInbandTextTrack should be deallocated by caller (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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/WebKit/chromium/src/InbandTextTrackPrivateImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.cpp
diff --git a/Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.cpp b/Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.cpp
index f9cf020c28ac671f8c8dc49df7c3bfea894e84c8..036befc80a6be00151b0bf9fe830772eb0b3e5e1 100644
--- a/Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.cpp
+++ b/Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.cpp
@@ -32,12 +32,11 @@
#include "WebInbandTextTrack.h"
#include "core/platform/graphics/InbandTextTrackPrivateClient.h"
#include "public/WebString.h"
-#include <wtf/PassOwnPtr.h>
namespace WebKit {
InbandTextTrackPrivateImpl::InbandTextTrackPrivateImpl(WebInbandTextTrack* track)
- : m_track(adoptPtr(track))
+ : m_track(track)
{
ASSERT(track);
track->setClient(this);
« no previous file with comments | « Source/WebKit/chromium/src/InbandTextTrackPrivateImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698