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

Unified Diff: content/gpu/in_process_gpu_thread.h

Issue 1908223002: Remove content/gpu from content/browser/android/DEPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: content/gpu/in_process_gpu_thread.h
diff --git a/content/gpu/in_process_gpu_thread.h b/content/gpu/in_process_gpu_thread.h
index 653d707208c16fc018a798217c98c6200a0d8415..e4b5810f7e27459804ed45779677133417aeff84 100644
--- a/content/gpu/in_process_gpu_thread.h
+++ b/content/gpu/in_process_gpu_thread.h
@@ -15,7 +15,6 @@
namespace gpu {
class GpuMemoryBufferFactory;
-class SyncPointManager;
struct GpuPreferences;
}
@@ -28,8 +27,7 @@ class GpuProcess;
class InProcessGpuThread : public base::Thread {
public:
InProcessGpuThread(const InProcessChildThreadParams& params,
- const gpu::GpuPreferences& gpu_preferences,
- gpu::SyncPointManager* sync_point_manager_override);
+ const gpu::GpuPreferences& gpu_preferences);
~InProcessGpuThread() override;
protected:
@@ -44,12 +42,6 @@ class InProcessGpuThread : public base::Thread {
const gpu::GpuPreferences gpu_preferences_;
- // Can be null if overridden.
- std::unique_ptr<gpu::SyncPointManager> sync_point_manager_;
-
- // Non-owning.
- gpu::SyncPointManager* sync_point_manager_override_;
-
std::unique_ptr<gpu::GpuMemoryBufferFactory> gpu_memory_buffer_factory_;
DISALLOW_COPY_AND_ASSIGN(InProcessGpuThread);

Powered by Google App Engine
This is Rietveld 408576698