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

Side by Side Diff: components/history/core/browser/top_sites_impl.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_TOP_SITES_IMPL_H_ 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_IMPL_H_
6 #define COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_IMPL_H_ 6 #define COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_IMPL_H_
7 7
8 #include <stddef.h>
9
8 #include <list> 10 #include <list>
9 #include <set> 11 #include <set>
10 #include <string> 12 #include <string>
11 #include <utility> 13 #include <utility>
12 #include <vector> 14 #include <vector>
13 15
14 #include "base/basictypes.h"
15 #include "base/callback.h" 16 #include "base/callback.h"
16 #include "base/gtest_prod_util.h" 17 #include "base/gtest_prod_util.h"
18 #include "base/macros.h"
17 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
18 #include "base/scoped_observer.h" 20 #include "base/scoped_observer.h"
19 #include "base/synchronization/lock.h" 21 #include "base/synchronization/lock.h"
20 #include "base/task/cancelable_task_tracker.h" 22 #include "base/task/cancelable_task_tracker.h"
21 #include "base/threading/thread_checker.h" 23 #include "base/threading/thread_checker.h"
22 #include "base/time/time.h" 24 #include "base/time/time.h"
23 #include "base/timer/timer.h" 25 #include "base/timer/timer.h"
24 #include "components/history/core/browser/history_service.h" 26 #include "components/history/core/browser/history_service.h"
25 #include "components/history/core/browser/history_service_observer.h" 27 #include "components/history/core/browser/history_service_observer.h"
26 #include "components/history/core/browser/history_types.h" 28 #include "components/history/core/browser/history_types.h"
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 315
314 ScopedObserver<HistoryService, HistoryServiceObserver> 316 ScopedObserver<HistoryService, HistoryServiceObserver>
315 history_service_observer_; 317 history_service_observer_;
316 318
317 DISALLOW_COPY_AND_ASSIGN(TopSitesImpl); 319 DISALLOW_COPY_AND_ASSIGN(TopSitesImpl);
318 }; 320 };
319 321
320 } // namespace history 322 } // namespace history
321 323
322 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_IMPL_H_ 324 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_IMPL_H_
OLDNEW
« no previous file with comments | « components/history/core/browser/top_sites_database_unittest.cc ('k') | components/history/core/browser/top_sites_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698