| 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 #include "content/renderer/media/android/stream_texture_factory_impl.h" | 5 #include "content/renderer/media/android/stream_texture_factory_impl.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "cc/output/context_provider.h" | 8 #include "cc/output/context_provider.h" |
| 9 #include "content/common/gpu/client/context_provider_command_buffer.h" | 9 #include "content/common/gpu/client/context_provider_command_buffer.h" |
| 10 #include "content/common/gpu/client/gpu_channel_host.h" | 10 #include "content/common/gpu/client/gpu_channel_host.h" |
| 11 #include "content/common/gpu/gpu_messages.h" | |
| 12 #include "content/renderer/gpu/stream_texture_host_android.h" | 11 #include "content/renderer/gpu/stream_texture_host_android.h" |
| 13 #include "gpu/command_buffer/client/gles2_interface.h" | 12 #include "gpu/command_buffer/client/gles2_interface.h" |
| 13 #include "gpu/ipc/common/gpu_messages.h" |
| 14 #include "ui/gfx/geometry/size.h" | 14 #include "ui/gfx/geometry/size.h" |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 class StreamTextureProxyImpl : public StreamTextureProxy, | 20 class StreamTextureProxyImpl : public StreamTextureProxy, |
| 21 public StreamTextureHost::Listener { | 21 public StreamTextureHost::Listener { |
| 22 public: | 22 public: |
| 23 explicit StreamTextureProxyImpl(StreamTextureHost* host); | 23 explicit StreamTextureProxyImpl(StreamTextureHost* host); |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 167 |
| 168 void StreamTextureFactoryImpl::AddObserver( | 168 void StreamTextureFactoryImpl::AddObserver( |
| 169 StreamTextureFactoryContextObserver* obs) { | 169 StreamTextureFactoryContextObserver* obs) { |
| 170 } | 170 } |
| 171 | 171 |
| 172 void StreamTextureFactoryImpl::RemoveObserver( | 172 void StreamTextureFactoryImpl::RemoveObserver( |
| 173 StreamTextureFactoryContextObserver* obs) { | 173 StreamTextureFactoryContextObserver* obs) { |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace content | 176 } // namespace content |
| OLD | NEW |