Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / cc / output / renderer_settings.cc
blob35415f1986640433d4ea3c979dad24610fc8170c
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "cc/output/renderer_settings.h"
7 #include <limits>
9 #include "base/logging.h"
11 namespace cc {
13 RendererSettings::RendererSettings()
14 : allow_antialiasing(true),
15 force_antialiasing(false),
16 force_blending_with_shaders(false),
17 partial_swap_enabled(false),
18 finish_rendering_on_resize(false),
19 should_clear_root_render_pass(true),
20 disable_display_vsync(false),
21 delay_releasing_overlay_resources(false),
22 refresh_rate(60.0),
23 highp_threshold_min(0),
24 use_rgba_4444_textures(false),
25 texture_id_allocation_chunk_size(64) {}
27 RendererSettings::~RendererSettings() {
30 } // namespace cc