| 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 #ifndef COMPONENTS_OMNIBOX_BROWSER_IN_MEMORY_URL_INDEX_H_ | 5 #ifndef COMPONENTS_OMNIBOX_BROWSER_IN_MEMORY_URL_INDEX_H_ |
| 6 #define COMPONENTS_OMNIBOX_BROWSER_IN_MEMORY_URL_INDEX_H_ | 6 #define COMPONENTS_OMNIBOX_BROWSER_IN_MEMORY_URL_INDEX_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <functional> | 10 #include <functional> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 namespace base { | 34 namespace base { |
| 35 class SequencedTaskRunner; | 35 class SequencedTaskRunner; |
| 36 class Time; | 36 class Time; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace bookmarks { | 39 namespace bookmarks { |
| 40 class BookmarkModel; | 40 class BookmarkModel; |
| 41 } | 41 } |
| 42 | 42 |
| 43 namespace in_memory_url_index { | |
| 44 class InMemoryURLIndexCacheItem; | |
| 45 } | |
| 46 | |
| 47 namespace history { | 43 namespace history { |
| 48 class HistoryDatabase; | 44 class HistoryDatabase; |
| 49 class HistoryService; | 45 class HistoryService; |
| 50 class HQPPerfTestOnePopularURL; | 46 class HQPPerfTestOnePopularURL; |
| 51 } | 47 } |
| 52 | 48 |
| 53 class URLIndexPrivateData; | 49 class URLIndexPrivateData; |
| 54 | 50 |
| 55 typedef std::set<std::string> SchemeSet; | 51 typedef std::set<std::string> SchemeSet; |
| 56 | 52 |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 // This flag is set to true if we want to listen to the | 313 // This flag is set to true if we want to listen to the |
| 318 // HistoryServiceLoaded Notification. | 314 // HistoryServiceLoaded Notification. |
| 319 bool listen_to_history_service_loaded_; | 315 bool listen_to_history_service_loaded_; |
| 320 | 316 |
| 321 base::ThreadChecker thread_checker_; | 317 base::ThreadChecker thread_checker_; |
| 322 | 318 |
| 323 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex); | 319 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex); |
| 324 }; | 320 }; |
| 325 | 321 |
| 326 #endif // COMPONENTS_OMNIBOX_BROWSER_IN_MEMORY_URL_INDEX_H_ | 322 #endif // COMPONENTS_OMNIBOX_BROWSER_IN_MEMORY_URL_INDEX_H_ |
| OLD | NEW |