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

Side by Side Diff: chrome/browser/local_discovery/privet_device_lister_impl.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_LOCAL_DISCOVERY_PRIVET_DEVICE_LISTER_IMPL_H_ 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_DEVICE_LISTER_IMPL_H_
6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_DEVICE_LISTER_IMPL_H_ 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_DEVICE_LISTER_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "chrome/browser/local_discovery/privet_device_lister.h" 10 #include "chrome/browser/local_discovery/privet_device_lister.h"
(...skipping 10 matching lines...) Expand all
21 ServiceDiscoveryClient* service_discovery_client, 21 ServiceDiscoveryClient* service_discovery_client,
22 PrivetDeviceLister::Delegate* delegate, 22 PrivetDeviceLister::Delegate* delegate,
23 const std::string& subtype); 23 const std::string& subtype);
24 24
25 PrivetDeviceListerImpl( 25 PrivetDeviceListerImpl(
26 ServiceDiscoveryClient* service_discovery_client, 26 ServiceDiscoveryClient* service_discovery_client,
27 PrivetDeviceLister::Delegate* delegate); 27 PrivetDeviceLister::Delegate* delegate);
28 28
29 virtual ~PrivetDeviceListerImpl(); 29 virtual ~PrivetDeviceListerImpl();
30 30
31 virtual void Start() OVERRIDE; 31 virtual void Start() override;
32 virtual void DiscoverNewDevices(bool force_update) OVERRIDE; 32 virtual void DiscoverNewDevices(bool force_update) override;
33 33
34 protected: 34 protected:
35 virtual void OnDeviceChanged( 35 virtual void OnDeviceChanged(
36 bool added, 36 bool added,
37 const ServiceDescription& service_description) OVERRIDE; 37 const ServiceDescription& service_description) override;
38 virtual void OnDeviceRemoved(const std::string& service_name) OVERRIDE; 38 virtual void OnDeviceRemoved(const std::string& service_name) override;
39 virtual void OnDeviceCacheFlushed() OVERRIDE; 39 virtual void OnDeviceCacheFlushed() override;
40 40
41 private: 41 private:
42 PrivetDeviceLister::Delegate* delegate_; 42 PrivetDeviceLister::Delegate* delegate_;
43 ServiceDiscoveryDeviceLister device_lister_; 43 ServiceDiscoveryDeviceLister device_lister_;
44 }; 44 };
45 45
46 } // namespace local_discovery 46 } // namespace local_discovery
47 47
48 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_DEVICE_LISTER_IMPL_H_ 48 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_DEVICE_LISTER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698