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

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

Issue 6990074: Change GetVisitCountToHost() to GetVisibleVisitCountToHost(), and restrict it to returning "user-... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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_backend.cc ('k') | chrome/browser/history/visit_database.h » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Data structures for communication between the history service on the main 5 // Data structures for communication between the history service on the main
6 // thread and the backend on the history thread. 6 // thread and the backend on the history thread.
7 7
8 #ifndef CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_ 8 #ifndef CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_
9 #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_ 9 #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_
10 #pragma once 10 #pragma once
(...skipping 13 matching lines...) Expand all
24 QueryURLRequest; 24 QueryURLRequest;
25 25
26 typedef CancelableRequest1<HistoryService::QueryHistoryCallback, 26 typedef CancelableRequest1<HistoryService::QueryHistoryCallback,
27 QueryResults> 27 QueryResults>
28 QueryHistoryRequest; 28 QueryHistoryRequest;
29 29
30 typedef CancelableRequest1<HistoryService::QueryRedirectsCallback, 30 typedef CancelableRequest1<HistoryService::QueryRedirectsCallback,
31 history::RedirectList> 31 history::RedirectList>
32 QueryRedirectsRequest; 32 QueryRedirectsRequest;
33 33
34 typedef CancelableRequest<HistoryService::GetVisitCountToHostCallback> 34 typedef CancelableRequest<HistoryService::GetVisibleVisitCountToHostCallback>
35 GetVisitCountToHostRequest; 35 GetVisibleVisitCountToHostRequest;
36 36
37 typedef CancelableRequest1<HistoryService::QueryTopURLsAndRedirectsCallback, 37 typedef CancelableRequest1<HistoryService::QueryTopURLsAndRedirectsCallback,
38 Tuple2<std::vector<GURL>, 38 Tuple2<std::vector<GURL>,
39 history::RedirectMap> > 39 history::RedirectMap> >
40 QueryTopURLsAndRedirectsRequest; 40 QueryTopURLsAndRedirectsRequest;
41 41
42 typedef CancelableRequest1<HistoryService::QueryMostVisitedURLsCallback, 42 typedef CancelableRequest1<HistoryService::QueryMostVisitedURLsCallback,
43 history::MostVisitedURLList> 43 history::MostVisitedURLList>
44 QueryMostVisitedURLsRequest; 44 QueryMostVisitedURLsRequest;
45 45
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // The argument here is an input value, which is the task to run on the 85 // The argument here is an input value, which is the task to run on the
86 // background thread. The callback is used to execute the portion of the task 86 // background thread. The callback is used to execute the portion of the task
87 // that executes on the main thread. 87 // that executes on the main thread.
88 typedef CancelableRequest1<HistoryService::HistoryDBTaskCallback, 88 typedef CancelableRequest1<HistoryService::HistoryDBTaskCallback,
89 scoped_refptr<HistoryDBTask> > 89 scoped_refptr<HistoryDBTask> >
90 HistoryDBTaskRequest; 90 HistoryDBTaskRequest;
91 91
92 } // namespace history 92 } // namespace history
93 93
94 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_ 94 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | chrome/browser/history/visit_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698