OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MEDIA_FILTERS_RENDERER_IMPL_H_ | 5 #ifndef MEDIA_FILTERS_RENDERER_IMPL_H_ |
gunsch
2015/02/19 23:44:15
here and elsewhere: MEDIA_FILTERS --> MEDIA_RENDER
| |
6 #define MEDIA_FILTERS_RENDERER_IMPL_H_ | 6 #define MEDIA_FILTERS_RENDERER_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "base/synchronization/lock.h" | 11 #include "base/synchronization/lock.h" |
12 #include "base/time/clock.h" | 12 #include "base/time/clock.h" |
13 #include "base/time/default_tick_clock.h" | 13 #include "base/time/default_tick_clock.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "media/base/buffering_state.h" | 15 #include "media/base/buffering_state.h" |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
171 | 171 |
172 base::WeakPtr<RendererImpl> weak_this_; | 172 base::WeakPtr<RendererImpl> weak_this_; |
173 base::WeakPtrFactory<RendererImpl> weak_factory_; | 173 base::WeakPtrFactory<RendererImpl> weak_factory_; |
174 | 174 |
175 DISALLOW_COPY_AND_ASSIGN(RendererImpl); | 175 DISALLOW_COPY_AND_ASSIGN(RendererImpl); |
176 }; | 176 }; |
177 | 177 |
178 } // namespace media | 178 } // namespace media |
179 | 179 |
180 #endif // MEDIA_FILTERS_RENDERER_IMPL_H_ | 180 #endif // MEDIA_FILTERS_RENDERER_IMPL_H_ |
OLD | NEW |