| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ | 5 #ifndef COMPONENTS_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ |
| 6 #define COMPONENTS_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ | 6 #define COMPONENTS_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <list> | 10 #include <list> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "components/search_engines/template_url_id.h" | 29 #include "components/search_engines/template_url_id.h" |
| 30 #include "components/sync/api/sync_change.h" | 30 #include "components/sync/api/sync_change.h" |
| 31 #include "components/sync/api/syncable_service.h" | 31 #include "components/sync/api/syncable_service.h" |
| 32 #include "components/webdata/common/web_data_service_consumer.h" | 32 #include "components/webdata/common/web_data_service_consumer.h" |
| 33 | 33 |
| 34 class GURL; | 34 class GURL; |
| 35 class PrefService; | 35 class PrefService; |
| 36 class SearchHostToURLsMap; | 36 class SearchHostToURLsMap; |
| 37 class SearchTermsData; | 37 class SearchTermsData; |
| 38 class TemplateURL; | 38 class TemplateURL; |
| 39 struct TemplateURLData; | |
| 40 class TemplateURLServiceClient; | 39 class TemplateURLServiceClient; |
| 41 class TemplateURLServiceObserver; | 40 class TemplateURLServiceObserver; |
| 41 struct TemplateURLData; |
| 42 | 42 |
| 43 namespace rappor { | 43 namespace rappor { |
| 44 class RapporService; | 44 class RapporService; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace syncer { | 47 namespace syncer { |
| 48 class SyncData; | 48 class SyncData; |
| 49 class SyncErrorFactory; | 49 class SyncErrorFactory; |
| 50 } | 50 } |
| 51 | 51 |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 // Helper class to manage the default search engine. | 813 // Helper class to manage the default search engine. |
| 814 DefaultSearchManager default_search_manager_; | 814 DefaultSearchManager default_search_manager_; |
| 815 | 815 |
| 816 std::unique_ptr<GoogleURLTracker::Subscription> | 816 std::unique_ptr<GoogleURLTracker::Subscription> |
| 817 google_url_updated_subscription_; | 817 google_url_updated_subscription_; |
| 818 | 818 |
| 819 DISALLOW_COPY_AND_ASSIGN(TemplateURLService); | 819 DISALLOW_COPY_AND_ASSIGN(TemplateURLService); |
| 820 }; | 820 }; |
| 821 | 821 |
| 822 #endif // COMPONENTS_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ | 822 #endif // COMPONENTS_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ |
| OLD | NEW |