Index: content/browser/gpu/gpu_data_manager_impl.cc |
diff --git a/content/browser/gpu/gpu_data_manager_impl.cc b/content/browser/gpu/gpu_data_manager_impl.cc |
index f6c3e27889788bd5bcf1c827fad04fc0c38097e4..b265610e1769632cde05263540ae293c748c78d4 100644 |
--- a/content/browser/gpu/gpu_data_manager_impl.cc |
+++ b/content/browser/gpu/gpu_data_manager_impl.cc |
@@ -206,22 +206,6 @@ void GpuDataManagerImpl::RemoveObserver(GpuDataManagerObserver* observer) { |
observer_list_->RemoveObserver(observer); |
} |
-void GpuDataManagerImpl::SetWindowCount(uint32 count) { |
- { |
- base::AutoLock auto_lock(gpu_info_lock_); |
- window_count_ = count; |
- } |
- GpuProcessHost::SendOnIO( |
- GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED, |
- CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH, |
- new GpuMsg_SetVideoMemoryWindowCount(count)); |
-} |
- |
-uint32 GpuDataManagerImpl::GetWindowCount() const { |
- base::AutoLock auto_lock(gpu_info_lock_); |
- return window_count_; |
-} |
- |
void GpuDataManagerImpl::UnblockDomainFrom3DAPIs(const GURL& url) { |
// This method must do two things: |
// |