[MacViews] Frameless app windows: make content view cover title bar.
[chromium-blink-merge.git] / cc / test / solid_color_content_layer_client.h
blob1ab4c4d712f091a805b52472e660bd96b89d8ba9
1 // Copyright 2013 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.
5 #ifndef CC_TEST_SOLID_COLOR_CONTENT_LAYER_CLIENT_H_
6 #define CC_TEST_SOLID_COLOR_CONTENT_LAYER_CLIENT_H_
8 #include "base/compiler_specific.h"
9 #include "cc/layers/content_layer_client.h"
10 #include "third_party/skia/include/core/SkColor.h"
12 namespace cc {
14 class SolidColorContentLayerClient : public ContentLayerClient {
15 public:
16 explicit SolidColorContentLayerClient(SkColor color) : color_(color) {}
18 // ContentLayerClient implementation.
19 void PaintContents(SkCanvas* canvas,
20 const gfx::Rect& rect,
21 PaintingControlSetting painting_control) override;
22 scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
23 const gfx::Rect& clip,
24 PaintingControlSetting painting_control) override;
25 bool FillsBoundsCompletely() const override;
27 private:
28 SkColor color_;
31 } // namespace cc
33 #endif // CC_TEST_SOLID_COLOR_CONTENT_LAYER_CLIENT_H_