Chromium Code Reviews

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

Issue 5676004: Cleanup: Remove unneeded browser_thread.h usage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix deps Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #pragma once 7 #pragma once
8 8
9 #include <list> 9 #include <list>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 #include <utility>
12 13
13 #include "base/basictypes.h" 14 #include "base/basictypes.h"
14 #include "base/gtest_prod_util.h" 15 #include "base/gtest_prod_util.h"
15 #include "base/lock.h" 16 #include "base/lock.h"
16 #include "base/ref_counted.h" 17 #include "base/ref_counted.h"
17 #include "base/ref_counted_memory.h" 18 #include "base/ref_counted_memory.h"
18 #include "base/time.h" 19 #include "base/time.h"
19 #include "base/timer.h" 20 #include "base/timer.h"
20 #include "chrome/browser/browser_thread.h"
21 #include "chrome/browser/cancelable_request.h" 21 #include "chrome/browser/cancelable_request.h"
22 #include "chrome/browser/history/history_types.h" 22 #include "chrome/browser/history/history_types.h"
23 #include "chrome/browser/history/history.h" 23 #include "chrome/browser/history/history.h"
24 #include "chrome/browser/history/page_usage_data.h" 24 #include "chrome/browser/history/page_usage_data.h"
25 #include "chrome/common/notification_service.h" 25 #include "chrome/common/notification_service.h"
26 #include "chrome/common/thumbnail_score.h" 26 #include "chrome/common/thumbnail_score.h"
27 #include "googleurl/src/gurl.h" 27 #include "googleurl/src/gurl.h"
28 28
29 class DictionaryValue; 29 class DictionaryValue;
30 class FilePath; 30 class FilePath;
(...skipping 319 matching lines...)
350 350
351 // Are we loaded? 351 // Are we loaded?
352 bool loaded_; 352 bool loaded_;
353 353
354 DISALLOW_COPY_AND_ASSIGN(TopSites); 354 DISALLOW_COPY_AND_ASSIGN(TopSites);
355 }; 355 };
356 356
357 } // namespace history 357 } // namespace history
358 358
359 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_ 359 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_
OLDNEW

Powered by Google App Engine