| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ |
| 6 #define COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "components/history/core/browser/history_types.h" | 9 #include "components/history/core/browser/history_types.h" |
| 10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| 11 | 11 |
| 12 class SkBitmap; | |
| 13 | |
| 14 namespace history { | 12 namespace history { |
| 15 | 13 |
| 16 ///////////////////////////////////////////////////////////////////////////// | 14 ///////////////////////////////////////////////////////////////////////////// |
| 17 // | 15 // |
| 18 // PageUsageData | 16 // PageUsageData |
| 19 // | 17 // |
| 20 // A per domain usage data structure to compute and manage most visited | 18 // A per domain usage data structure to compute and manage most visited |
| 21 // pages. | 19 // pages. |
| 22 // | 20 // |
| 23 // See QueryPageUsageSince() | 21 // See QueryPageUsageSince() |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 SegmentID id_; | 58 SegmentID id_; |
| 61 GURL url_; | 59 GURL url_; |
| 62 base::string16 title_; | 60 base::string16 title_; |
| 63 | 61 |
| 64 double score_; | 62 double score_; |
| 65 }; | 63 }; |
| 66 | 64 |
| 67 } // namespace history | 65 } // namespace history |
| 68 | 66 |
| 69 #endif // COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ | 67 #endif // COMPONENTS_HISTORY_CORE_BROWSER_PAGE_USAGE_DATA_H__ |
| OLD | NEW |