1// Copyright 2013 The Flutter 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#include "flutter/flow/testing/skia_gpu_object_layer_test.h"
6
7#include "flutter/fml/time/time_delta.h"
8
9namespace flutter {
10namespace testing {
11
12SkiaGPUObjectLayerTest::SkiaGPUObjectLayerTest()
13 : unref_queue_(fml::MakeRefCounted<SkiaUnrefQueue>(
14 GetCurrentTaskRunner(),
15 fml::TimeDelta::FromSeconds(0))) {}
16
17} // namespace testing
18} // namespace flutter
19