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

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

Issue 7793003: Revert 98656 - Make a new integer field in sql::MetaTable (a per-profile db) containing a counter... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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/profiles/profile_io_data.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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 typedef CancelableRequest<HistoryService::ThumbnailDataCallback> 48 typedef CancelableRequest<HistoryService::ThumbnailDataCallback>
49 GetPageThumbnailRequest; 49 GetPageThumbnailRequest;
50 50
51 // Favicons ------------------------------------------------------------------- 51 // Favicons -------------------------------------------------------------------
52 52
53 typedef CancelableRequest<FaviconService::FaviconDataCallback> 53 typedef CancelableRequest<FaviconService::FaviconDataCallback>
54 GetFaviconRequest; 54 GetFaviconRequest;
55 55
56 // Downloads ------------------------------------------------------------------ 56 // Downloads ------------------------------------------------------------------
57 57
58 typedef CancelableRequest1<HistoryService::DownloadNextIdCallback,
59 int/*next_id*/>
60 DownloadNextIdRequest;
61
62
63 typedef CancelableRequest1<HistoryService::DownloadQueryCallback, 58 typedef CancelableRequest1<HistoryService::DownloadQueryCallback,
64 std::vector<DownloadPersistentStoreInfo> > 59 std::vector<DownloadPersistentStoreInfo> >
65 DownloadQueryRequest; 60 DownloadQueryRequest;
66 61
67 typedef CancelableRequest<HistoryService::DownloadCreateCallback> 62 typedef CancelableRequest<HistoryService::DownloadCreateCallback>
68 DownloadCreateRequest; 63 DownloadCreateRequest;
69 64
70 // Deletion -------------------------------------------------------------------- 65 // Deletion --------------------------------------------------------------------
71 66
72 typedef CancelableRequest<HistoryService::ExpireHistoryCallback> 67 typedef CancelableRequest<HistoryService::ExpireHistoryCallback>
(...skipping 17 matching lines...) Expand all
90 // 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
91 // 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
92 // that executes on the main thread. 87 // that executes on the main thread.
93 typedef CancelableRequest1<HistoryService::HistoryDBTaskCallback, 88 typedef CancelableRequest1<HistoryService::HistoryDBTaskCallback,
94 scoped_refptr<HistoryDBTask> > 89 scoped_refptr<HistoryDBTask> >
95 HistoryDBTaskRequest; 90 HistoryDBTaskRequest;
96 91
97 } // namespace history 92 } // namespace history
98 93
99 #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/profiles/profile_io_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698