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

Unified Diff: ui/ozone/platform/dri/dri_surface_factory.cc

Issue 251843002: ozone: dri: Remove CHECK failure on page flip failure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: semicolons Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/dri_surface_factory.cc
diff --git a/ui/ozone/platform/dri/dri_surface_factory.cc b/ui/ozone/platform/dri/dri_surface_factory.cc
index 2ea1086ca415bb031aa7bc641839a8553c05df02..cca9175a342b994543e11c49a8e3511690f36234 100644
--- a/ui/ozone/platform/dri/dri_surface_factory.cc
+++ b/ui/ozone/platform/dri/dri_surface_factory.cc
@@ -115,7 +115,7 @@ void DriSurfaceAdapter::PresentCanvas(const gfx::Rect& damage) {
image->draw(canvas, &real_damage, real_damage, NULL);
last_damage_ = damage;
- CHECK(dri_->SchedulePageFlip(widget_));
+ dri_->SchedulePageFlip(widget_);
}
scoped_ptr<gfx::VSyncProvider> DriSurfaceAdapter::CreateVSyncProvider() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698