// Copyright 2020 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_CHROME_WEBAPPS_CLIENT_H_ #define CHROME_BROWSER_WEBAPPS_CHROME_WEBAPPS_CLIENT_H_ #include "components/webapps/browser/webapps_client.h" namespace url { class Origin; } namespace webapps { // Abstract implementation for the common functionality between desktop // & Android. class ChromeWebappsClient : public WebappsClient { … }; } // namespace webapps #endif // CHROME_BROWSER_WEBAPPS_CHROME_WEBAPPS_CLIENT_H_