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

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

Issue 48019: Removed unneeded includes of base/time.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/importer/firefox_importer_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_VISIT_TRACKER_H__ 5 #ifndef CHROME_BROWSER_HISTORY_VISIT_TRACKER_H__
6 #define CHROME_BROWSER_HISTORY_VISIT_TRACKER_H__ 6 #define CHROME_BROWSER_HISTORY_VISIT_TRACKER_H__
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/time.h"
13 #include "chrome/browser/history/history_types.h" 12 #include "chrome/browser/history/history_types.h"
14 13
15 namespace history { 14 namespace history {
16 15
17 // Tracks history transitions between pages. The history backend uses this to 16 // Tracks history transitions between pages. The history backend uses this to
18 // link up page transitions to form a chain of page visits, and to set the 17 // link up page transitions to form a chain of page visits, and to set the
19 // transition type properly. 18 // transition type properly.
20 // 19 //
21 // This class is not thread safe. 20 // This class is not thread safe.
22 class VisitTracker { 21 class VisitTracker {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 57
59 // Maps render view hosts to lists of recent transitions. 58 // Maps render view hosts to lists of recent transitions.
60 HostList hosts_; 59 HostList hosts_;
61 60
62 DISALLOW_EVIL_CONSTRUCTORS(VisitTracker); 61 DISALLOW_EVIL_CONSTRUCTORS(VisitTracker);
63 }; 62 };
64 63
65 } // namespace history 64 } // namespace history
66 65
67 #endif // CHROME_BROWSER_HISTORY_VISIT_TRACKER_H__ 66 #endif // CHROME_BROWSER_HISTORY_VISIT_TRACKER_H__
OLDNEW
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/importer/firefox_importer_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698