提交 94a4b96b 编写于 作者: J Jason Simmons

Fix a typo ("threshold") (#2583)

上级 30548c0e
......@@ -9,7 +9,7 @@
namespace flow {
LayerTree::LayerTree() : scene_version_(0), rasterizer_tracing_threashold_(0) {
LayerTree::LayerTree() : scene_version_(0), rasterizer_tracing_threshold_(0) {
}
LayerTree::~LayerTree() {
......
......@@ -55,11 +55,11 @@ class LayerTree {
// trace the rasterized picture to a trace file. Specify 0 to disable all
// tracing
void set_rasterizer_tracing_threshold(uint32_t interval) {
rasterizer_tracing_threashold_ = interval;
rasterizer_tracing_threshold_ = interval;
}
uint32_t rasterizer_tracing_threshold() const {
return rasterizer_tracing_threashold_;
return rasterizer_tracing_threshold_;
}
private:
......@@ -68,7 +68,7 @@ class LayerTree {
std::unique_ptr<Layer> root_layer_;
base::TimeDelta construction_time_;
uint32_t rasterizer_tracing_threashold_;
uint32_t rasterizer_tracing_threshold_;
DISALLOW_COPY_AND_ASSIGN(LayerTree);
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册