// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_NTP_TILES_WEBUI_NTP_TILES_INTERNALS_MESSAGE_HANDLER_CLIENT_H_ #define COMPONENTS_NTP_TILES_WEBUI_NTP_TILES_INTERNALS_MESSAGE_HANDLER_CLIENT_H_ #include <memory> #include <string> #include <string_view> #include <vector> #include "base/functional/callback_forward.h" #include "base/values.h" #include "components/ntp_tiles/tile_source.h" class PrefService; namespace ntp_tiles { class MostVisitedSites; // Implemented by embedders to hook up NTPTilesInternalsMessageHandler. class NTPTilesInternalsMessageHandlerClient { … }; } // namespace ntp_tiles #endif // COMPONENTS_NTP_TILES_WEBUI_NTP_TILES_INTERNALS_MESSAGE_HANDLER_CLIENT_H_