OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_HISTORY_PAGE_USAGE_DATA_H__ | 5 #ifndef CHROME_BROWSER_HISTORY_PAGE_USAGE_DATA_H__ |
6 #define CHROME_BROWSER_HISTORY_PAGE_USAGE_DATA_H__ | 6 #define CHROME_BROWSER_HISTORY_PAGE_USAGE_DATA_H__ |
7 | 7 |
8 #include "base/string16.h" | 8 #include "base/string16.h" |
9 #include "chrome/browser/history/history.h" | 9 #include "chrome/browser/history/history.h" |
10 #include "chrome/browser/history/history_types.h" | 10 #include "chrome/browser/history/history_types.h" |
11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
12 #include "skia/include/SkBitmap.h" | 12 #include "third_party/skia/include/core/SkBitmap.h" |
13 | 13 |
14 ///////////////////////////////////////////////////////////////////////////// | 14 ///////////////////////////////////////////////////////////////////////////// |
15 // | 15 // |
16 // PageUsageData | 16 // PageUsageData |
17 // | 17 // |
18 // 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 |
19 // pages. | 19 // pages. |
20 // | 20 // |
21 // See History::QueryPageUsageSince() | 21 // See History::QueryPageUsageSince() |
22 // | 22 // |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 139 |
140 SkBitmap* favicon_; | 140 SkBitmap* favicon_; |
141 bool favicon_set_; | 141 bool favicon_set_; |
142 // Whether we have an outstanding request for the favicon. | 142 // Whether we have an outstanding request for the favicon. |
143 bool favicon_pending_; | 143 bool favicon_pending_; |
144 | 144 |
145 double score_; | 145 double score_; |
146 }; | 146 }; |
147 | 147 |
148 #endif // CHROME_BROWSER_HISTORY_PAGE_USAGE_DATA_H__ | 148 #endif // CHROME_BROWSER_HISTORY_PAGE_USAGE_DATA_H__ |
OLD | NEW |