blob: ab96387edbd77774d5b23f9ba2d1d70db1ca7d7a [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(
const std::shared_ptr<AndroidContext>& android_context) {
FML_DCHECK(android_context->IsValid());
android_context_ = android_context;
}
AndroidSurface::~AndroidSurface() = default;
std::unique_ptr<Surface> AndroidSurface::CreateSnapshotSurface() {
return nullptr;
}
std::shared_ptr<impeller::Context> AndroidSurface::GetImpellerContext() {
return nullptr;
}
} // namespace flutter