blob: 1e8abd03e302a61c8603093682986c82ab890c73 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_FILE_HANDLER_MANAGER_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_FILE_HANDLER_MANAGER_H_
#include <map>
#include <vector>
#include "chrome/browser/web_applications/components/file_handler_manager.h"
#include "chrome/browser/web_applications/components/web_app_id.h"
class Profile;
namespace web_app {
class WebAppFileHandlerManager : public FileHandlerManager {
public:
explicit WebAppFileHandlerManager(Profile* profile);
~WebAppFileHandlerManager() override;
protected:
const apps::FileHandlers* GetAllFileHandlers(const AppId& app_id) override;
};
} // namespace web_app
#endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_FILE_HANDLER_MANAGER_H_