| Index: gpu/command_buffer/service/in_process_command_buffer.h
|
| diff --git a/gpu/command_buffer/service/in_process_command_buffer.h b/gpu/command_buffer/service/in_process_command_buffer.h
|
| index 09a22457c9a35c7d36f6aa7823827c499d8a7170..c406fbcd1b05018594052f3a76fd792265186348 100644
|
| --- a/gpu/command_buffer/service/in_process_command_buffer.h
|
| +++ b/gpu/command_buffer/service/in_process_command_buffer.h
|
| @@ -26,7 +26,6 @@
|
| #include "gpu/command_buffer/client/gpu_control.h"
|
| #include "gpu/command_buffer/common/command_buffer.h"
|
| #include "gpu/command_buffer/service/gpu_preferences.h"
|
| -#include "gpu/config/gpu_driver_bug_workarounds.h"
|
| #include "gpu/gpu_export.h"
|
| #include "ui/gfx/gpu_memory_buffer.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| @@ -144,7 +143,7 @@
|
| class Service {
|
| public:
|
| Service();
|
| - Service(const gpu::GpuPreferences& gpu_preferences);
|
| + explicit Service(const gpu::GpuPreferences& gpu_preferences);
|
| virtual ~Service();
|
|
|
| virtual void AddRef() const = 0;
|
| @@ -164,7 +163,6 @@
|
| framebuffer_completeness_cache() = 0;
|
| virtual SyncPointManager* sync_point_manager() = 0;
|
| const GpuPreferences& gpu_preferences();
|
| - const GpuDriverBugWorkarounds& gpu_driver_bug_workarounds();
|
| scoped_refptr<gfx::GLShareGroup> share_group();
|
| scoped_refptr<gles2::MailboxManager> mailbox_manager();
|
| scoped_refptr<gles2::SubscriptionRefSet> subscription_ref_set();
|
| @@ -173,7 +171,6 @@
|
|
|
| private:
|
| const GpuPreferences gpu_preferences_;
|
| - const GpuDriverBugWorkarounds gpu_driver_bug_workarounds_;
|
| scoped_refptr<gfx::GLShareGroup> share_group_;
|
| scoped_refptr<gles2::MailboxManager> mailbox_manager_;
|
| scoped_refptr<gles2::SubscriptionRefSet> subscription_ref_set_;
|
|
|