blob: 8d4d1550f9c01bbbc3d561791e201b477c62eaaa [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/linux/linux_ui_delegate_stub.h"
#include "base/callback.h"
namespace ui {
LinuxUiDelegateStub::LinuxUiDelegateStub() = default;
LinuxUiDelegateStub::~LinuxUiDelegateStub() = default;
LinuxUiBackend LinuxUiDelegateStub::GetBackend() const {
return LinuxUiBackend::kStub;
}
bool LinuxUiDelegateStub::ExportWindowHandle(
gfx::AcceleratedWidget window_id,
base::OnceCallback<void(std::string)> callback) {
return false;
}
} // namespace ui