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

Unified Diff: sandbox/win/src/heap_helper.cc

Issue 2859273005: change recent LOG() to DLOG() (Closed)
Patch Set: revert EOL-style change in previous patch Created 3 years, 7 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
« no previous file with comments | « no previous file | sandbox/win/src/target_services.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/heap_helper.cc
diff --git a/sandbox/win/src/heap_helper.cc b/sandbox/win/src/heap_helper.cc
index 4e4401a9a69f9cd5c8a79415527bd76d5dd9edf3..605a7ac11a25fe800dcf60eba198d583e70fc397 100644
--- a/sandbox/win/src/heap_helper.cc
+++ b/sandbox/win/src/heap_helper.cc
@@ -48,12 +48,12 @@ HANDLE FindCsrPortHeap() {
HANDLE handle = all_heaps[i];
DWORD flags = 0;
if (!HeapFlags(handle, &flags)) {
- LOG(ERROR) << "Unable to get flags for this heap";
+ DLOG(ERROR) << "Unable to get flags for this heap";
continue;
}
if ((flags & HEAP_CLASS_MASK) == HEAP_CLASS_8) {
if (nullptr != csr_port_heap) {
- LOG(ERROR) << "Found multiple suitable CSR Port heaps";
+ DLOG(ERROR) << "Found multiple suitable CSR Port heaps";
return nullptr;
}
csr_port_heap = handle;
« no previous file with comments | « no previous file | sandbox/win/src/target_services.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698