blob: e301491b5fce074cde095a0b0dae33b653ef53ac [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/shell/platform/android/surface/android_surface.h"
#include "flutter/fml/logging.h"
namespace flutter {
AndroidSurface::AndroidSurface() = default;
AndroidSurface::~AndroidSurface() = default;
std::unique_ptr<Surface> AndroidSurface::CreateSnapshotSurface() {
return nullptr;
}
std::shared_ptr<impeller::Context> AndroidSurface::GetImpellerContext() {
return nullptr;
}
} // namespace flutter