chromium/chrome/browser/sharing/optimization_guide/optimization_guide_message_handler.h

// Copyright 2021 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_SHARING_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_MESSAGE_HANDLER_H_
#define CHROME_BROWSER_SHARING_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_MESSAGE_HANDLER_H_

#include <memory>

#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "components/sharing_message/sharing_message_handler.h"

class OptimizationGuideLogger;
class Profile;

namespace optimization_guide {
class PushNotificationManager;
}  // namespace optimization_guide

// Message handler to handle optimization guide push notification message from
// sharing message.
class OptimizationGuideMessageHandler : public SharingMessageHandler {};

#endif  // CHROME_BROWSER_SHARING_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_MESSAGE_HANDLER_H_