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

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

Issue 10217010: Completed the code path from AndroidProviderService to HistoryBackend. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 8 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_marshaling.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 #pragma once
11
12 #include "chrome/browser/cancelable_request.h"
13 #include "chrome/browser/history/android/android_history_provider_service.h"
14
15 namespace history {
16
17 typedef CancelableRequest<AndroidHistoryProviderService::InsertCallback>
18 InsertRequest;
19 typedef CancelableRequest<AndroidHistoryProviderService::QueryCallback>
20 QueryRequest;
21 typedef CancelableRequest<AndroidHistoryProviderService::UpdateCallback>
22 UpdateRequest;
23 typedef CancelableRequest<AndroidHistoryProviderService::DeleteCallback>
24 DeleteRequest;
25 typedef CancelableRequest<AndroidHistoryProviderService::MoveStatementCallback>
26 MoveStatementRequest;
27
28 } // namespace history
29
30 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_ANDROID_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/history_marshaling.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698