Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_ | |
| OLD | NEW |