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

Side by Side Diff: media/base/android/stream_texture_wrapper.cc

Issue 2136103010: Add StreamTextureWrapper/StreamTextureWrapperImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed to StreamTextureWrapper, handled destruction Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef TOOLS_CLANG_PLUGINS_TESTS_SYSTEM_VECTOR_ 5 #include "media/base/android/stream_texture_wrapper.h"
tguilbert 2016/07/21 22:03:37 I am not sure how this showed up in this CL...
6 #define TOOLS_CLANG_PLUGINS_TESTS_SYSTEM_VECTOR_
7 6
8 namespace std { 7 namespace std {
9 8 void default_delete<media::StreamTextureWrapper>::operator()(
10 template<typename T> 9 media::StreamTextureWrapper* stw) const {
11 class vector { 10 stw->Destroy();
12 }; 11 }
13
14 } // namespace std 12 } // namespace std
15
16 #endif // TOOLS_CLANG_PLUGINS_TESTS_SYSTEM_VECTOR_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698