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

Unified Diff: content/gpu/in_process_gpu_thread.cc

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop ref to deleted content_tests_gypi_values.content_unittests_ozone_sources Created 4 years, 8 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
« no previous file with comments | « content/gpu/in_process_gpu_thread.h ('k') | content/renderer/media/android/stream_texture_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/in_process_gpu_thread.cc
diff --git a/content/gpu/in_process_gpu_thread.cc b/content/gpu/in_process_gpu_thread.cc
index ccd3594a4d06621a1ba7eb3ba028d68b105eef14..cb1c880df293b8b04238da0f48ee94fbc34e7414 100644
--- a/content/gpu/in_process_gpu_thread.cc
+++ b/content/gpu/in_process_gpu_thread.cc
@@ -6,11 +6,11 @@
#include "base/time/time.h"
#include "build/build_config.h"
-#include "content/common/gpu/gpu_memory_buffer_factory.h"
#include "content/gpu/gpu_child_thread.h"
#include "content/gpu/gpu_process.h"
#include "gpu/command_buffer/service/sync_point_manager.h"
#include "gpu/ipc/common/gpu_memory_buffer_support.h"
+#include "gpu/ipc/service/gpu_memory_buffer_factory.h"
#if defined(OS_ANDROID)
#include "base/android/jni_android.h"
@@ -29,8 +29,8 @@ InProcessGpuThread::InProcessGpuThread(
sync_point_manager_override_(sync_point_manager_override),
gpu_memory_buffer_factory_(
gpu::GetNativeGpuMemoryBufferType() != gfx::EMPTY_BUFFER
- ? GpuMemoryBufferFactory::CreateNativeType()
- : nullptr) {
+ ? gpu::GpuMemoryBufferFactory::CreateNativeType()
+ : nullptr) {
if (!sync_point_manager_override_) {
sync_point_manager_.reset(new gpu::SyncPointManager(false));
sync_point_manager_override_ = sync_point_manager_.get();
« no previous file with comments | « content/gpu/in_process_gpu_thread.h ('k') | content/renderer/media/android/stream_texture_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698