Chromium Code Reviews| Index: cc/tiles/tile_manager_settings.h |
| diff --git a/cc/tiles/tile_manager_settings.h b/cc/tiles/tile_manager_settings.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8dac2b39f77b474bf36d6f014137c4b83e92d0d5 |
| --- /dev/null |
| +++ b/cc/tiles/tile_manager_settings.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2017 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. |
| + |
| +#ifndef CC_TILES_TILE_MANAGER_SETTINGS_H_ |
| +#define CC_TILES_TILE_MANAGER_SETTINGS_H_ |
| + |
| +#include "cc/base/cc_export.h" |
| + |
| +namespace cc { |
| + |
| +class CC_EXPORT TileManagerSettings { |
| + public: |
| + TileManagerSettings(); |
|
vmpstr
2017/02/10 19:25:43
I don't think you need out of like ctors/dtors. Do
Khushal
2017/02/10 22:09:19
Oh, I don't. Done.
|
| + TileManagerSettings(const TileManagerSettings& other); |
| + ~TileManagerSettings(); |
| + |
| + bool use_partial_raster = false; |
| + bool check_tile_priority_inversion = false; |
| + bool enable_checker_imaging = false; |
| +}; |
| + |
| +} // namespace cc |
| + |
| +#endif // CC_TILES_TILE_MANAGER_SETTINGS_H_ |