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 <string>
6
7namespace flutter {
8
9static std::string gGoldenDir;
10static std::string gFontFile;
11
12const std::string& GetGoldenDir() {
13 return gGoldenDir;
14}
15
16void SetGoldenDir(const std::string& dir) {
17 gGoldenDir = dir;
18}
19
20const std::string& GetFontFile() {
21 return gFontFile;
22}
23
24void SetFontFile(const std::string& file) {
25 gFontFile = file;
26}
27
28} // namespace flutter
29