root/cc/scheduler/scheduler_settings.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. throttle_frame_production

// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/scheduler/scheduler_settings.h"

namespace cc {

SchedulerSettings::SchedulerSettings()
    : main_frame_before_draw_enabled(true),
      main_frame_before_activation_enabled(false),
      impl_side_painting(false),
      timeout_and_draw_when_animation_checkerboards(true),
      maximum_number_of_failed_draws_before_draw_is_forced_(3),
      using_synchronous_renderer_compositor(false),
      throttle_frame_production(true) {}

SchedulerSettings::~SchedulerSettings() {}

}  // namespace cc

/* [<][>][^][v][top][bottom][index][help] */