OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "ash/system/chromeos/network/vpn_delegate.h" | 5 #include "ash/common/system/chromeos/network/vpn_delegate.h" |
6 | 6 |
7 #include "chromeos/network/network_state.h" | 7 #include "chromeos/network/network_state.h" |
8 #include "third_party/cros_system_api/dbus/service_constants.h" | 8 #include "third_party/cros_system_api/dbus/service_constants.h" |
9 | 9 |
10 namespace ash { | 10 namespace ash { |
11 | 11 |
12 VPNProvider::Key::Key() : third_party(false) {} | 12 VPNProvider::Key::Key() : third_party(false) {} |
13 | 13 |
14 VPNProvider::Key::Key(const std::string& extension_id) | 14 VPNProvider::Key::Key(const std::string& extension_id) |
15 : third_party(true), extension_id(extension_id) {} | 15 : third_party(true), extension_id(extension_id) {} |
(...skipping 29 matching lines...) Expand all Loading... |
45 | 45 |
46 void VPNDelegate::RemoveObserver(Observer* observer) { | 46 void VPNDelegate::RemoveObserver(Observer* observer) { |
47 observer_list_.RemoveObserver(observer); | 47 observer_list_.RemoveObserver(observer); |
48 } | 48 } |
49 | 49 |
50 void VPNDelegate::NotifyObservers() { | 50 void VPNDelegate::NotifyObservers() { |
51 FOR_EACH_OBSERVER(Observer, observer_list_, OnVPNProvidersChanged()); | 51 FOR_EACH_OBSERVER(Observer, observer_list_, OnVPNProvidersChanged()); |
52 } | 52 } |
53 | 53 |
54 } // namespace ash | 54 } // namespace ash |
OLD | NEW |