1 // Copyright 2017 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 "components/viz/common/resources/resource_settings.h"
6 
7 namespace viz {
8 
9 ResourceSettings::ResourceSettings() = default;
10 
11 ResourceSettings::ResourceSettings(const ResourceSettings& other) = default;
12 
13 ResourceSettings::~ResourceSettings() = default;
14 
15 ResourceSettings& ResourceSettings::operator=(const ResourceSettings& other) =
16     default;
17 
18 }  // namespace viz
19