blob: 72cf71e34de49372a802bd97fe7d2cb1da42b161 [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 COMPONENTS_GAMES_CORE_GAMES_SERVICE_IMPL_H_
#define COMPONENTS_GAMES_CORE_GAMES_SERVICE_IMPL_H_
#include <memory>
#include "components/games/core/games_service.h"
#include "components/games/core/games_types.h"
namespace games {
class GamesServiceImpl : public GamesService {
public:
GamesServiceImpl();
~GamesServiceImpl() override;
void GetHighlightedGame(HighlightedGameCallback callback) override;
};
} // namespace games
#endif // COMPONENTS_GAMES_CORE_GAMES_SERVICE_IMPL_H_