| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file overrides the inclusion of talk/base/memory/scoped_ptr.h. We use | |
| 6 // a version of scoped_ptr from Chromium base, to avoid multiple definitions. | |
| 7 | |
| 8 #ifndef OVERRIDES_TALK_BASE_SCOPED_PTR_H_ | |
| 9 #define OVERRIDES_TALK_BASE_SCOPED_PTR_H_ | |
| 10 | |
| 11 #include "base/memory/scoped_ptr.h" | |
| 12 #include "talk/base/common.h" | |
| 13 | |
| 14 namespace talk_base { | |
| 15 | |
| 16 using ::scoped_ptr; | |
| 17 using ::scoped_array; | |
| 18 | |
| 19 } // namespace talk_base | |
| 20 | |
| 21 #endif // OVERRIDES_TALK_BASE_SCOPED_PTR_H_ | |
| OLD | NEW |