blob: f7ab7cc7dc2dd57d7a37dbeeff90062749951b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (c) 2012 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 "ppapi/shared_impl/ppapi_preferences.h"
namespace ppapi {
Preferences::Preferences()
: default_font_size(0),
default_fixed_font_size(0),
number_of_cpu_cores(0),
is_3d_supported(true),
is_stage3d_supported(false),
is_stage3d_baseline_supported(false),
is_accelerated_video_decode_enabled(false) {}
Preferences::~Preferences() {}
} // namespace ppapi
|