// Copyright 2014 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_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ #define COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ #include <string> #include "base/time/time.h" #include "components/history/core/browser/history_types.h" #include "url/gurl.h" namespace history { ///////////////////////////////////////////////////////////////////////////// // // PageUsageData // // A per domain usage data structure to compute and manage most visited // pages. // // See QueryPageUsageSince() // ///////////////////////////////////////////////////////////////////////////// class PageUsageData { … }; } // namespace history #endif // COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__