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

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

Issue 369503007: Remove dead code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows compilation Created 6 years, 5 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
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_H_
9 #define CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_
10
11 #include "base/memory/scoped_vector.h"
12 #include "chrome/browser/common/cancelable_request.h"
13 #include "chrome/browser/history/history_service.h"
14 #include "chrome/browser/history/page_usage_data.h"
15
16 #if defined(OS_ANDROID)
17 #include "chrome/browser/history/history_marshaling_android.h"
18 #endif
19
20 namespace history {
21
22 // Querying -------------------------------------------------------------------
23
24 typedef CancelableRequest1<HistoryService::QueryMostVisitedURLsCallback,
25 history::MostVisitedURLList>
26 QueryMostVisitedURLsRequest;
27
28 } // namespace history
29
30 #endif // CHROME_BROWSER_HISTORY_HISTORY_MARSHALING_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | chrome/browser/history/history_querying_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698