OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Data structures for communication between the history service on the main | |
6 // thread and the backend on the history thread. | |
7 | |
8 #ifndef CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ | |
9 #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ | |
10 | |
11 #include "chrome/browser/common/cancelable_request.h" | |
12 #include "chrome/browser/history/android/android_history_provider_service.h" | |
13 | |
14 namespace history { | |
15 | |
16 typedef CancelableRequest<AndroidHistoryProviderService::InsertCallback> | |
17 InsertRequest; | |
18 typedef CancelableRequest<AndroidHistoryProviderService::QueryCallback> | |
19 QueryRequest; | |
20 typedef CancelableRequest<AndroidHistoryProviderService::UpdateCallback> | |
21 UpdateRequest; | |
22 typedef CancelableRequest<AndroidHistoryProviderService::DeleteCallback> | |
23 DeleteRequest; | |
24 typedef CancelableRequest<AndroidHistoryProviderService::MoveStatementCallback> | |
25 MoveStatementRequest; | |
26 | |
27 } // namespace history | |
28 | |
29 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ | |
OLD | NEW |