Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Unified Diff: content/renderer/media/android/stream_texture_factory_impl.cc

Issue 1827123002: Move content/common/gpu/client to gpu/ipc/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/android/stream_texture_factory_impl.cc
diff --git a/content/renderer/media/android/stream_texture_factory_impl.cc b/content/renderer/media/android/stream_texture_factory_impl.cc
index e6d6f40909172d7f2e581efce06148e3faddafc4..81de90af4b3a45ba7340ee02ce347026f067a484 100644
--- a/content/renderer/media/android/stream_texture_factory_impl.cc
+++ b/content/renderer/media/android/stream_texture_factory_impl.cc
@@ -7,9 +7,9 @@
#include "base/macros.h"
#include "cc/output/context_provider.h"
#include "content/common/gpu/client/context_provider_command_buffer.h"
-#include "content/common/gpu/client/gpu_channel_host.h"
#include "content/renderer/gpu/stream_texture_host_android.h"
#include "gpu/command_buffer/client/gles2_interface.h"
+#include "gpu/ipc/client/gpu_channel_host.h"
#include "gpu/ipc/common/gpu_messages.h"
#include "ui/gfx/geometry/size.h"
@@ -106,13 +106,13 @@ void StreamTextureProxyImpl::OnFrameAvailable() {
// static
scoped_refptr<StreamTextureFactoryImpl> StreamTextureFactoryImpl::Create(
const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
- GpuChannelHost* channel) {
+ gpu::GpuChannelHost* channel) {
return new StreamTextureFactoryImpl(context_provider, channel);
}
StreamTextureFactoryImpl::StreamTextureFactoryImpl(
const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
- GpuChannelHost* channel)
+ gpu::GpuChannelHost* channel)
: context_provider_(context_provider), channel_(channel) {
DCHECK(channel);
}

Powered by Google App Engine
This is Rietveld 408576698