| Index: ui/gl/sync_control_vsync_provider.cc
|
| diff --git a/ui/gl/sync_control_vsync_provider.cc b/ui/gl/sync_control_vsync_provider.cc
|
| index 66d3734f58e4fd114c671776287400df6014bba2..961460659880187626de492f2e1d21132287e027 100644
|
| --- a/ui/gl/sync_control_vsync_provider.cc
|
| +++ b/ui/gl/sync_control_vsync_provider.cc
|
| @@ -125,17 +125,7 @@ void SyncControlVSyncProvider::GetVSyncParameters(
|
| if (relative_change < kRelativeIntervalDifferenceThreshold) {
|
| if (new_interval.InMicroseconds() < kMinVsyncIntervalUs ||
|
| new_interval.InMicroseconds() > kMaxVsyncIntervalUs) {
|
| -#if defined(USE_ASH)
|
| - // On ash platforms (ChromeOS essentially), the real refresh interval is
|
| - // queried from XRandR, regardless of the value calculated here, and
|
| - // this value is overriden by ui::CompositorVSyncManager. The log
|
| - // should not be fatal in this case. Reconsider all this when XRandR
|
| - // support is added to non-ash platforms.
|
| - // http://crbug.com/340851
|
| LOG(ERROR)
|
| -#else
|
| - LOG(FATAL)
|
| -#endif // USE_ASH
|
| << "Calculated bogus refresh interval="
|
| << new_interval.InMicroseconds()
|
| << " us., last_timebase_=" << last_timebase_.ToInternalValue()
|
|
|