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

Unified Diff: ui/ozone/platform/drm/common/drm_util.cc

Issue 2314423003: ozone: Switch some DRM-related warnings to VLOG(1). (Closed)
Patch Set: use VPLOG(1) for cursor messages Created 4 years, 3 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 | ui/ozone/platform/drm/gpu/drm_device_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/common/drm_util.cc
diff --git a/ui/ozone/platform/drm/common/drm_util.cc b/ui/ozone/platform/drm/common/drm_util.cc
index f5b63a53497886b7196d8f46f99bf1ad166ed30b..d13941ecf37474087fafc4caa8975edf60160014 100644
--- a/ui/ozone/platform/drm/common/drm_util.cc
+++ b/ui/ozone/platform/drm/common/drm_util.cc
@@ -196,11 +196,11 @@ bool HasColorCorrectionMatrix(int fd, drmModeCrtc* crtc) {
gfx::Size GetMaximumCursorSize(int fd) {
uint64_t width = 0, height = 0;
if (drmGetCap(fd, DRM_CAP_CURSOR_WIDTH, &width)) {
- PLOG(WARNING) << "Unable to get cursor width capability";
+ VPLOG(1) << "Unable to get cursor width capability";
return gfx::Size(kDefaultCursorWidth, kDefaultCursorHeight);
}
if (drmGetCap(fd, DRM_CAP_CURSOR_HEIGHT, &height)) {
- PLOG(WARNING) << "Unable to get cursor height capability";
+ VPLOG(1) << "Unable to get cursor height capability";
return gfx::Size(kDefaultCursorWidth, kDefaultCursorHeight);
}
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gpu/drm_device_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698