Index: cc/resources/prioritized_tile.cc |
diff --git a/cc/resources/prioritized_tile.cc b/cc/resources/prioritized_tile.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3a9f815fec4f58e5eddda61ac31339bb9678186c |
--- /dev/null |
+++ b/cc/resources/prioritized_tile.cc |
@@ -0,0 +1,23 @@ |
+// Copyright 2015 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. |
+ |
+#include "cc/resources/prioritized_tile.h" |
+ |
+#include "cc/resources/picture_layer_tiling.h" |
+ |
+namespace cc { |
+ |
+PrioritizedTile::PrioritizedTile() : tile_(nullptr), is_occluded_(false) { |
+} |
+ |
+PrioritizedTile::PrioritizedTile(Tile* tile, |
+ const TilePriority priority, |
+ bool is_occluded) |
+ : tile_(tile), priority_(priority), is_occluded_(is_occluded) { |
+} |
+ |
+PrioritizedTile::~PrioritizedTile() { |
+} |
+ |
+} // namespace cc |