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

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

Issue 698783002: Revert of Revert of Add logs to debug a flakiness on GPU Mac bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « content/browser/devtools/devtools_system_info_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/browser/devtools/devtools_system_info_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698