Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3327)

Unified Diff: cc/tiles/tile_manager_settings.h

Issue 2668873002: cc: Add checker-imaging support to TileManager. (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698