// Copyright 2015 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_POPULAR_SITES_H_ #define COMPONENTS_NTP_TILES_POPULAR_SITES_H_ #include <map> #include <string> #include <vector> #include "base/functional/callback.h" #include "base/values.h" #include "components/ntp_tiles/section_type.h" #include "components/ntp_tiles/tile_title_source.h" #include "url/gurl.h" namespace ntp_tiles { // Interface to provide a list of suggested popular sites, for display on the // NTP when there are not enough personalized tiles. class PopularSites { … }; } // namespace ntp_tiles #endif // COMPONENTS_NTP_TILES_POPULAR_SITES_H_