Popular sites on the NTP: Try to keep the ordering constant
[chromium-blink-merge.git] / ppapi / shared_impl / ppapi_preferences.cc
blobf7ab7cc7dc2dd57d7a37dbeeff90062749951b20
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.
5 #include "ppapi/shared_impl/ppapi_preferences.h"
7 namespace ppapi {
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) {}
18 Preferences::~Preferences() {}
20 } // namespace ppapi