summaryrefslogtreecommitdiffstats
path: root/cc/test/layer_tree_json_parser.h
blob: 83ea5196b5538cacefff6d18fbc0498e96ff3a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2013 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.

#ifndef CC_TEST_LAYER_TREE_JSON_PARSER_H_
#define CC_TEST_LAYER_TREE_JSON_PARSER_H_

#include <string>

#include "base/memory/ref_counted.h"

namespace cc {

class ContentLayerClient;
class Layer;

scoped_refptr<Layer> ParseTreeFromJson(std::string json,
                                       ContentLayerClient* content_client);

}  // namespace cc

#endif  // CC_TEST_LAYER_TREE_JSON_PARSER_H_