blob: e8484552754a298fb9a47d0d5b39e0e44bf1dccf [file] [log] [blame]
// Copyright 2018 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_APPS_APP_SERVICE_BUILT_IN_CHROMEOS_APPS_H_
#define CHROME_BROWSER_APPS_APP_SERVICE_BUILT_IN_CHROMEOS_APPS_H_
#include "base/macros.h"
#include "chrome/services/app_service/public/mojom/app_service.mojom.h"
#include "mojo/public/cpp/bindings/binding.h"
class Profile;
namespace apps {
// An app publisher (in the App Service sense) of built-in Chrome OS apps.
//
// See chrome/services/app_service/README.md.
class BuiltInChromeOsApps : public apps::mojom::Publisher {
public:
BuiltInChromeOsApps();
~BuiltInChromeOsApps() override;
void Initialize(const apps::mojom::AppServicePtr& app_service,
Profile* profile);
private:
// apps::mojom::Publisher overrides.
void Connect(apps::mojom::SubscriberPtr subscriber,
apps::mojom::ConnectOptionsPtr opts) override;
void LoadIcon(const std::string& app_id,
apps::mojom::IconKeyPtr icon_key,
apps::mojom::IconCompression icon_compression,
int32_t size_hint_in_dip,
LoadIconCallback callback) override;
mojo::Binding<apps::mojom::Publisher> binding_;
Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(BuiltInChromeOsApps);
};
} // namespace apps
#endif // CHROME_BROWSER_APPS_APP_SERVICE_BUILT_IN_CHROMEOS_APPS_H_