• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 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.
4 
5 #include "ppapi/shared_impl/ppapi_preferences.h"
6 
7 namespace ppapi {
8 
Preferences()9 Preferences::Preferences()
10     : default_font_size(0),
11       default_fixed_font_size(0),
12       number_of_cpu_cores(0),
13       is_3d_supported(true),
14       is_stage3d_supported(false),
15       is_stage3d_baseline_supported(false),
16       is_accelerated_video_decode_enabled(false) {}
17 
~Preferences()18 Preferences::~Preferences() {}
19 
20 }  // namespace ppapi
21