| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_ANDROID_H_ | 8 #ifndef CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ |
| 9 #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ | 9 #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ |
| 10 | 10 |
| 11 #include "chrome/browser/cancelable_request.h" | 11 #include "chrome/browser/common/cancelable_request.h" |
| 12 #include "chrome/browser/history/android/android_history_provider_service.h" | 12 #include "chrome/browser/history/android/android_history_provider_service.h" |
| 13 | 13 |
| 14 namespace history { | 14 namespace history { |
| 15 | 15 |
| 16 typedef CancelableRequest<AndroidHistoryProviderService::InsertCallback> | 16 typedef CancelableRequest<AndroidHistoryProviderService::InsertCallback> |
| 17 InsertRequest; | 17 InsertRequest; |
| 18 typedef CancelableRequest<AndroidHistoryProviderService::QueryCallback> | 18 typedef CancelableRequest<AndroidHistoryProviderService::QueryCallback> |
| 19 QueryRequest; | 19 QueryRequest; |
| 20 typedef CancelableRequest<AndroidHistoryProviderService::UpdateCallback> | 20 typedef CancelableRequest<AndroidHistoryProviderService::UpdateCallback> |
| 21 UpdateRequest; | 21 UpdateRequest; |
| 22 typedef CancelableRequest<AndroidHistoryProviderService::DeleteCallback> | 22 typedef CancelableRequest<AndroidHistoryProviderService::DeleteCallback> |
| 23 DeleteRequest; | 23 DeleteRequest; |
| 24 typedef CancelableRequest<AndroidHistoryProviderService::MoveStatementCallback> | 24 typedef CancelableRequest<AndroidHistoryProviderService::MoveStatementCallback> |
| 25 MoveStatementRequest; | 25 MoveStatementRequest; |
| 26 | 26 |
| 27 } // namespace history | 27 } // namespace history |
| 28 | 28 |
| 29 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ | 29 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_ |
| OLD | NEW |