summaryrefslogtreecommitdiffstats
path: root/cc/blink
diff options
context:
space:
mode:
authordanakj <danakj@chromium.org>2015-08-05 11:46:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-05 18:47:26 +0000
commita8f1ac39c6a9471bb1fc16933c82cb2cd982412e (patch)
tree50bef1cf07f7efc51880c3d1919f82bf1d2273fc /cc/blink
parent007470272d8c029c101161a1135400a3059abae4 (diff)
downloadchromium_src-a8f1ac39c6a9471bb1fc16933c82cb2cd982412e.zip
chromium_src-a8f1ac39c6a9471bb1fc16933c82cb2cd982412e.tar.gz
chromium_src-a8f1ac39c6a9471bb1fc16933c82cb2cd982412e.tar.bz2
cc: Remove code for drawing checkerboard quads, it's not used.
We're always drawing solid color for checkerboards now, so remove the code to support drawing the checker pattern. R=enne, vmpstr BUG=516496 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1271843005 Cr-Commit-Position: refs/heads/master@{#341930}
Diffstat (limited to 'cc/blink')
-rw-r--r--cc/blink/web_content_layer_impl.cc1
-rw-r--r--cc/blink/web_content_layer_impl.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/cc/blink/web_content_layer_impl.cc b/cc/blink/web_content_layer_impl.cc
index 8e37faf..e7ed0de 100644
--- a/cc/blink/web_content_layer_impl.cc
+++ b/cc/blink/web_content_layer_impl.cc
@@ -55,7 +55,6 @@ void WebContentLayerImpl::setDoubleSided(bool double_sided) {
}
void WebContentLayerImpl::setDrawCheckerboardForMissingTiles(bool enable) {
- layer_->layer()->SetDrawCheckerboardForMissingTiles(enable);
}
void WebContentLayerImpl::PaintContents(
diff --git a/cc/blink/web_content_layer_impl.h b/cc/blink/web_content_layer_impl.h
index 8d9c5fb..b9ca2b4 100644
--- a/cc/blink/web_content_layer_impl.h
+++ b/cc/blink/web_content_layer_impl.h
@@ -30,6 +30,7 @@ class WebContentLayerImpl : public blink::WebContentLayer,
// WebContentLayer implementation.
virtual blink::WebLayer* layer();
virtual void setDoubleSided(bool double_sided);
+ // TODO(danakj): Remove me.
virtual void setDrawCheckerboardForMissingTiles(bool checkerboard);
protected: