| 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_MOJO_SERVICES_MOJO_RENDERER_SERVICE_H_ | 5 #ifndef MEDIA_MOJO_SERVICES_MOJO_RENDERER_SERVICE_H_ |
| 6 #define MEDIA_MOJO_SERVICES_MOJO_RENDERER_SERVICE_H_ | 6 #define MEDIA_MOJO_SERVICES_MOJO_RENDERER_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 11 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
| 12 #include "media/base/buffering_state.h" | 14 #include "media/base/buffering_state.h" |
| 13 #include "media/base/pipeline_status.h" | 15 #include "media/base/pipeline_status.h" |
| 14 #include "media/mojo/interfaces/renderer.mojom.h" | 16 #include "media/mojo/interfaces/renderer.mojom.h" |
| 15 #include "mojo/public/cpp/bindings/strong_binding.h" | 17 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 16 | 18 |
| 17 namespace mojo { | 19 namespace mojo { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 109 |
| 108 base::WeakPtr<MojoRendererService> weak_this_; | 110 base::WeakPtr<MojoRendererService> weak_this_; |
| 109 base::WeakPtrFactory<MojoRendererService> weak_factory_; | 111 base::WeakPtrFactory<MojoRendererService> weak_factory_; |
| 110 | 112 |
| 111 DISALLOW_COPY_AND_ASSIGN(MojoRendererService); | 113 DISALLOW_COPY_AND_ASSIGN(MojoRendererService); |
| 112 }; | 114 }; |
| 113 | 115 |
| 114 } // namespace media | 116 } // namespace media |
| 115 | 117 |
| 116 #endif // MEDIA_MOJO_SERVICES_MOJO_RENDERER_SERVICE_H_ | 118 #endif // MEDIA_MOJO_SERVICES_MOJO_RENDERER_SERVICE_H_ |
| OLD | NEW |