Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(729)

Side by Side Diff: chrome/browser/sync/glue/search_engine_data_type_controller.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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__
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/password_model_worker.h ('k') | chrome/browser/sync/glue/sync_backend_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698