forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_proxy.cc
37 lines (25 loc) · 899 Bytes
/
fake_proxy.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2012 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/test/fake_proxy.h"
#include "cc/paint/paint_worklet_layer_painter.h"
#include "cc/trees/layer_tree_mutator.h"
namespace cc {
void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) {
layer_tree_host_ = host;
}
bool FakeProxy::RequestedAnimatePending() {
return false;
}
bool FakeProxy::IsStarted() const { return true; }
bool FakeProxy::CommitRequested() const { return false; }
void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {}
void FakeProxy::SetPaintWorkletLayerPainter(
std::unique_ptr<PaintWorkletLayerPainter> painter) {}
bool FakeProxy::SupportsImplScrolling() const {
return true;
}
bool FakeProxy::MainFrameWillHappenForTesting() {
return false;
}
} // namespace cc