Index: content/browser/gpu/gpu_data_manager_impl_private.cc |
diff --git a/content/browser/gpu/gpu_data_manager_impl_private.cc b/content/browser/gpu/gpu_data_manager_impl_private.cc |
index f71a62c8652bdf13fc07baef60fa7edcc75e624e..2022dbaeb942ee6fe1f39e5fb08fb2dcd0ffc95a 100644 |
--- a/content/browser/gpu/gpu_data_manager_impl_private.cc |
+++ b/content/browser/gpu/gpu_data_manager_impl_private.cc |
@@ -301,6 +301,7 @@ |
} |
gpu::GPUInfo GpuDataManagerImplPrivate::GetGPUInfo() const { |
+ VLOG(2) << "GpuDataManagerImplPrivate::GetGPUInfo()"; |
return gpu_info_; |
} |
@@ -904,6 +905,7 @@ |
display_count_(0), |
gpu_process_accessible_(true), |
finalized_(false) { |
+ VLOG(2) << "GpuDataManagerImplPrivate::GpuDataManagerImplPrivate()"; |
DCHECK(owner_); |
const base::CommandLine* command_line = |
base::CommandLine::ForCurrentProcess(); |
@@ -922,6 +924,7 @@ |
} |
GpuDataManagerImplPrivate::~GpuDataManagerImplPrivate() { |
+ VLOG(2) << "GpuDataManagerImplPrivate::~GpuDataManagerImplPrivate()"; |
#if defined(OS_MACOSX) |
CGDisplayRemoveReconfigurationCallback(DisplayReconfigCallback, owner_); |
#endif |
@@ -931,6 +934,8 @@ |
const std::string& gpu_blacklist_json, |
const std::string& gpu_driver_bug_list_json, |
const gpu::GPUInfo& gpu_info) { |
+ VLOG(2) << "GpuDataManagerImplPrivate::InitializeImpl()"; |
+ |
const bool log_gpu_control_list_decisions = |
base::CommandLine::ForCurrentProcess()->HasSwitch( |
switches::kLogGpuControlListDecisions); |