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

Side by Side Diff: ash/system/chromeos/network/tray_network_state_observer.h

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « ash/system/chromeos/network/tray_network.cc ('k') | ash/system/chromeos/network/tray_sms.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H 5 #ifndef ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H
6 #define ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H 6 #define ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 15 matching lines...) Expand all
26 26
27 protected: 27 protected:
28 virtual ~Delegate() {} 28 virtual ~Delegate() {}
29 }; 29 };
30 30
31 explicit TrayNetworkStateObserver(Delegate* delegate); 31 explicit TrayNetworkStateObserver(Delegate* delegate);
32 32
33 virtual ~TrayNetworkStateObserver(); 33 virtual ~TrayNetworkStateObserver();
34 34
35 // NetworkStateHandlerObserver overrides. 35 // NetworkStateHandlerObserver overrides.
36 virtual void NetworkListChanged() OVERRIDE; 36 virtual void NetworkListChanged() override;
37 virtual void DeviceListChanged() OVERRIDE; 37 virtual void DeviceListChanged() override;
38 virtual void DefaultNetworkChanged( 38 virtual void DefaultNetworkChanged(
39 const chromeos::NetworkState* network) OVERRIDE; 39 const chromeos::NetworkState* network) override;
40 virtual void NetworkConnectionStateChanged( 40 virtual void NetworkConnectionStateChanged(
41 const chromeos::NetworkState* network) OVERRIDE; 41 const chromeos::NetworkState* network) override;
42 virtual void NetworkPropertiesUpdated( 42 virtual void NetworkPropertiesUpdated(
43 const chromeos::NetworkState* network) OVERRIDE; 43 const chromeos::NetworkState* network) override;
44 44
45 private: 45 private:
46 Delegate* delegate_; 46 Delegate* delegate_;
47 47
48 DISALLOW_COPY_AND_ASSIGN(TrayNetworkStateObserver); 48 DISALLOW_COPY_AND_ASSIGN(TrayNetworkStateObserver);
49 }; 49 };
50 50
51 } // namespace ash 51 } // namespace ash
52 52
53 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H 53 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H
OLDNEW
« no previous file with comments | « ash/system/chromeos/network/tray_network.cc ('k') | ash/system/chromeos/network/tray_sms.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698