chromium/components/history/core/browser/top_sites.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/history/core/browser/top_sites.h"

#include "base/observer_list.h"
#include "components/history/core/browser/top_sites_observer.h"

namespace history {

PrepopulatedPage::PrepopulatedPage() :{}

PrepopulatedPage::PrepopulatedPage(const GURL& url,
                                   const std::u16string& title,
                                   int favicon_id,
                                   SkColor color)
    :{}

TopSites::TopSites() = default;

TopSites::~TopSites() = default;

void TopSites::AddObserver(TopSitesObserver* observer) {}

void TopSites::RemoveObserver(TopSitesObserver* observer) {}

void TopSites::NotifyTopSitesLoaded() {}

void TopSites::NotifyTopSitesChanged(
    const TopSitesObserver::ChangeReason reason) {}

}  // namespace history