Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Side by Side Diff: chrome/browser/history/top_sites.h

Issue 288005: First fix to minimize copying of image data. (Closed)
Patch Set: Modify gyp Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_TOP_SITES_H_ 5 #ifndef CHROME_BROWSER_HISTORY_TOP_SITES_H_
6 #define CHROME_BROWSER_HISTORY_TOP_SITES_H_ 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/lock.h" 14 #include "base/lock.h"
15 #include "base/ref_counted.h" 15 #include "base/ref_counted.h"
16 #include "base/ref_counted_memory.h"
16 #include "chrome/browser/history/history_types.h" 17 #include "chrome/browser/history/history_types.h"
17 #include "chrome/common/ref_counted_util.h"
18 #include "chrome/common/thumbnail_score.h" 18 #include "chrome/common/thumbnail_score.h"
19 #include "googleurl/src/gurl.h" 19 #include "googleurl/src/gurl.h"
20 20
21 class SkBitmap; 21 class SkBitmap;
22 struct ThumbnailScore; 22 struct ThumbnailScore;
23 23
24 namespace history { 24 namespace history {
25 25
26 class TopSitesBackend; 26 class TopSitesBackend;
27 class TopSitesTest; 27 class TopSitesTest;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 // TODO(brettw) use the blacklist. 121 // TODO(brettw) use the blacklist.
122 //std::set<GURL> blacklist_; 122 //std::set<GURL> blacklist_;
123 123
124 DISALLOW_COPY_AND_ASSIGN(TopSites); 124 DISALLOW_COPY_AND_ASSIGN(TopSites);
125 }; 125 };
126 126
127 } // namespace history 127 } // namespace history
128 128
129 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_ 129 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_
130 130
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698