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

Unified Diff: content/browser/gpu/gpu_data_manager_impl.cc

Issue 1854383002: Remove DisplayCount from GpuDataManagerImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: displaycount: . 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/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 88fcf97dc525ef9c18b96383dc25ba5289c7d189..c6dece77f81e98a3f71f2351e7168a4ec17bbc9f 100644
--- a/content/browser/gpu/gpu_data_manager_impl.cc
+++ b/content/browser/gpu/gpu_data_manager_impl.cc
@@ -242,16 +242,6 @@ size_t GpuDataManagerImpl::GetBlacklistedFeatureCount() const {
return private_->GetBlacklistedFeatureCount();
}
-void GpuDataManagerImpl::SetDisplayCount(unsigned int display_count) {
- base::AutoLock auto_lock(lock_);
- private_->SetDisplayCount(display_count);
-}
-
-unsigned int GpuDataManagerImpl::GetDisplayCount() const {
- base::AutoLock auto_lock(lock_);
- return private_->GetDisplayCount();
-}
-
bool GpuDataManagerImpl::UpdateActiveGpu(uint32_t vendor_id,
uint32_t device_id) {
base::AutoLock auto_lock(lock_);

Powered by Google App Engine
This is Rietveld 408576698