[go: nahoru, domu]

blob: 600ec1e582d5bd78901206ff6ab8e9863e6fd393 [file] [log] [blame]
Bo Liub86be5e2023-02-09 21:59:261// Copyright 2023 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "cc/slim/test_layer_tree_client.h"
6
7namespace cc::slim {
8
9void TestLayerTreeClient::RequestNewFrameSink() {
10 request_new_frame_sink_count_++;
11}
12
13void TestLayerTreeClient::DidInitializeLayerTreeFrameSink() {
14 did_initialize_layer_tree_frame_sink_count_++;
15}
16
17void TestLayerTreeClient::DidFailToInitializeLayerTreeFrameSink() {
18 did_fail_to_initialize_layer_tree_frame_sink_count_++;
19}
20
21void TestLayerTreeClient::DidLoseLayerTreeFrameSink() {
22 did_lose_layer_tree_frame_sink_count_++;
23}
24
25} // namespace cc::slim