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

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

Issue 285763004: Cleanup android specific code of //chrome/browser/history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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
« no previous file with comments | « no previous file | no next file » | 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) 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 #ifndef CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ 5 #ifndef CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
6 #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ 6 #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 21 matching lines...) Expand all
32 #include "components/visitedlink/browser/visitedlink_delegate.h" 32 #include "components/visitedlink/browser/visitedlink_delegate.h"
33 #include "content/public/browser/download_manager_delegate.h" 33 #include "content/public/browser/download_manager_delegate.h"
34 #include "content/public/browser/notification_observer.h" 34 #include "content/public/browser/notification_observer.h"
35 #include "content/public/browser/notification_registrar.h" 35 #include "content/public/browser/notification_registrar.h"
36 #include "content/public/common/page_transition_types.h" 36 #include "content/public/common/page_transition_types.h"
37 #include "sql/init_status.h" 37 #include "sql/init_status.h"
38 #include "sync/api/syncable_service.h" 38 #include "sync/api/syncable_service.h"
39 #include "ui/base/layout.h" 39 #include "ui/base/layout.h"
40 40
41 #if defined(OS_ANDROID) 41 #if defined(OS_ANDROID)
42 #include "chrome/browser/history/android/android_history_provider_service.h" 42 class AndroidHistoryProviderService;
43 #endif 43 #endif
44
45 class BookmarkService; 44 class BookmarkService;
46 class GURL; 45 class GURL;
47 class HistoryURLProvider; 46 class HistoryURLProvider;
48 class PageUsageData; 47 class PageUsageData;
49 class PageUsageRequest; 48 class PageUsageRequest;
50 class Profile; 49 class Profile;
51 struct HistoryURLProviderParams; 50 struct HistoryURLProviderParams;
52 51
53 namespace base { 52 namespace base {
54 class FilePath; 53 class FilePath;
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 scoped_ptr<history::InMemoryURLIndex> in_memory_url_index_; 1040 scoped_ptr<history::InMemoryURLIndex> in_memory_url_index_;
1042 1041
1043 ObserverList<history::VisitDatabaseObserver> visit_database_observers_; 1042 ObserverList<history::VisitDatabaseObserver> visit_database_observers_;
1044 1043
1045 history::DeleteDirectiveHandler delete_directive_handler_; 1044 history::DeleteDirectiveHandler delete_directive_handler_;
1046 1045
1047 DISALLOW_COPY_AND_ASSIGN(HistoryService); 1046 DISALLOW_COPY_AND_ASSIGN(HistoryService);
1048 }; 1047 };
1049 1048
1050 #endif // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ 1049 #endif // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698