| /* | |
| * Copyright 2023 Google LLC | |
| * | |
| * Use of this source code is governed by a BSD-style license that can be | |
| * found in the LICENSE file. | |
| */ | |
| #include "gm/surface_manager/SurfaceManager.h" | |
| #include <string> | |
| std::unique_ptr<SurfaceManager> SurfaceManager::FromConfig(std::string config, | |
| int width, | |
| int height) { | |
| return nullptr; // TODO(lovisolo): Implement. | |
| } |