| 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_SYNC_GLUE_SEARCH_ENGINE_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SEARCH_ENGINE_DATA_TYPE_CONTROLLER_H__ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SEARCH_ENGINE_DATA_TYPE_CONTROLLER_H__ | 6 #define CHROME_BROWSER_SYNC_GLUE_SEARCH_ENGINE_DATA_TYPE_CONTROLLER_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 SearchEngineDataTypeController( | 25 SearchEngineDataTypeController( |
| 26 sync_driver::SyncApiComponentFactory* profile_sync_factory, | 26 sync_driver::SyncApiComponentFactory* profile_sync_factory, |
| 27 Profile* profile); | 27 Profile* profile); |
| 28 | 28 |
| 29 TemplateURLService::Subscription* GetSubscriptionForTesting(); | 29 TemplateURLService::Subscription* GetSubscriptionForTesting(); |
| 30 | 30 |
| 31 private: | 31 private: |
| 32 virtual ~SearchEngineDataTypeController(); | 32 virtual ~SearchEngineDataTypeController(); |
| 33 | 33 |
| 34 // FrontendDataTypeController implementations. | 34 // FrontendDataTypeController implementations. |
| 35 virtual bool StartModels() OVERRIDE; | 35 virtual bool StartModels() override; |
| 36 virtual void StopModels() OVERRIDE; | 36 virtual void StopModels() override; |
| 37 | 37 |
| 38 void OnTemplateURLServiceLoaded(); | 38 void OnTemplateURLServiceLoaded(); |
| 39 | 39 |
| 40 scoped_ptr<TemplateURLService::Subscription> template_url_subscription_; | 40 scoped_ptr<TemplateURLService::Subscription> template_url_subscription_; |
| 41 Profile* const profile_; | 41 Profile* const profile_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(SearchEngineDataTypeController); | 43 DISALLOW_COPY_AND_ASSIGN(SearchEngineDataTypeController); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace browser_sync | 46 } // namespace browser_sync |
| 47 | 47 |
| 48 #endif // CHROME_BROWSER_SYNC_GLUE_SEARCH_ENGINE_DATA_TYPE_CONTROLLER_H__ | 48 #endif // CHROME_BROWSER_SYNC_GLUE_SEARCH_ENGINE_DATA_TYPE_CONTROLLER_H__ |
| OLD | NEW |