| 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 CHROME_BROWSER_AUTOCOMPLETE_IN_MEMORY_URL_INDEX_H_ | 5 #ifndef COMPONENTS_OMNIBOX_IN_MEMORY_URL_INDEX_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_IN_MEMORY_URL_INDEX_H_ | 6 #define COMPONENTS_OMNIBOX_IN_MEMORY_URL_INDEX_H_ |
| 7 | 7 |
| 8 #include <functional> | 8 #include <functional> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 313 |
| 314 // This flag is set to true if we want to listen to the | 314 // This flag is set to true if we want to listen to the |
| 315 // HistoryServiceLoaded Notification. | 315 // HistoryServiceLoaded Notification. |
| 316 bool listen_to_history_service_loaded_; | 316 bool listen_to_history_service_loaded_; |
| 317 | 317 |
| 318 base::ThreadChecker thread_checker_; | 318 base::ThreadChecker thread_checker_; |
| 319 | 319 |
| 320 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex); | 320 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex); |
| 321 }; | 321 }; |
| 322 | 322 |
| 323 #endif // CHROME_BROWSER_AUTOCOMPLETE_IN_MEMORY_URL_INDEX_H_ | 323 #endif // COMPONENTS_OMNIBOX_IN_MEMORY_URL_INDEX_H_ |
| OLD | NEW |