OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 IOS_CHROME_BROWSER_UI_WEBUI_HISTORY_BROWSING_HISTORY_HANDLER_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_WEBUI_HISTORY_BROWSING_HISTORY_HANDLER_H_ |
6 #define IOS_CHROME_BROWSER_UI_WEBUI_HISTORY_BROWSING_HISTORY_HANDLER_H_ | 6 #define IOS_CHROME_BROWSER_UI_WEBUI_HISTORY_BROWSING_HISTORY_HANDLER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/scoped_observer.h" | 15 #include "base/scoped_observer.h" |
16 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "base/task/cancelable_task_tracker.h" | 17 #include "base/task/cancelable_task_tracker.h" |
18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
19 #include "base/values.h" | 19 #include "base/values.h" |
20 #include "components/history/core/browser/history_service_observer.h" | 20 #include "components/history/core/browser/history_service_observer.h" |
21 #include "components/history/core/browser/url_row.h" | 21 #include "components/history/core/browser/url_row.h" |
22 #include "components/history/core/browser/web_history_service.h" | 22 #include "components/history/core/browser/web_history_service.h" |
23 #include "ios/public/provider/web/web_ui_ios_message_handler.h" | 23 #include "ios/web/public/webui/web_ui_ios_message_handler.h" |
24 #include "url/gurl.h" | 24 #include "url/gurl.h" |
25 | 25 |
26 class ProfileSyncService; | 26 class ProfileSyncService; |
27 class SupervisedUserService; | 27 class SupervisedUserService; |
28 | 28 |
29 namespace bookmarks { | 29 namespace bookmarks { |
30 class BookmarkModel; | 30 class BookmarkModel; |
31 } | 31 } |
32 | 32 |
33 namespace history { | 33 namespace history { |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 | 223 |
224 // Whether there are other forms of browsing history on the history server. | 224 // Whether there are other forms of browsing history on the history server. |
225 bool has_other_forms_of_browsing_history_; | 225 bool has_other_forms_of_browsing_history_; |
226 | 226 |
227 base::WeakPtrFactory<BrowsingHistoryHandler> weak_factory_; | 227 base::WeakPtrFactory<BrowsingHistoryHandler> weak_factory_; |
228 | 228 |
229 DISALLOW_COPY_AND_ASSIGN(BrowsingHistoryHandler); | 229 DISALLOW_COPY_AND_ASSIGN(BrowsingHistoryHandler); |
230 }; | 230 }; |
231 | 231 |
232 #endif // IOS_CHROME_BROWSER_UI_WEBUI_HISTORY_BROWSING_HISTORY_HANDLER_H_ | 232 #endif // IOS_CHROME_BROWSER_UI_WEBUI_HISTORY_BROWSING_HISTORY_HANDLER_H_ |
OLD | NEW |