chromium/chrome/browser/webapps/webapps_client_desktop.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_WEBAPPS_WEBAPPS_CLIENT_DESKTOP_H_
#define CHROME_BROWSER_WEBAPPS_WEBAPPS_CLIENT_DESKTOP_H_

#include "base/auto_reset.h"
#include "base/no_destructor.h"
#include "build/build_config.h"
#include "chrome/browser/webapps/chrome_webapps_client.h"

#if BUILDFLAG(IS_ANDROID)
#error "Desktop implementation should not be included in Android builds."
#endif

namespace webapps {

class WebappsClientDesktop : public ChromeWebappsClient {};

}  // namespace webapps

#endif  // CHROME_BROWSER_WEBAPPS_WEBAPPS_CLIENT_DESKTOP_H_