• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 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.
4 
5 #ifndef CC_TEST_FAKE_RENDERER_CLIENT_H_
6 #define CC_TEST_FAKE_RENDERER_CLIENT_H_
7 
8 #include "cc/output/renderer.h"
9 
10 namespace cc {
11 
12 class FakeRendererClient : public RendererClient {
13  public:
14   FakeRendererClient();
15 
16   // RendererClient methods.
17   virtual void SetFullRootLayerDamage() OVERRIDE;
18 
19   // Methods added for test.
set_full_root_layer_damage_count()20   int set_full_root_layer_damage_count() const {
21     return set_full_root_layer_damage_count_;
22   }
23 
24  private:
25   int set_full_root_layer_damage_count_;
26 };
27 
28 }  // namespace cc
29 
30 #endif  // CC_TEST_FAKE_RENDERER_CLIENT_H_
31