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/common/system/chromeos/network/vpn_list.h" | 5 #include "ash/system/network/vpn_list.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 | 10 |
11 namespace ash { | 11 namespace ash { |
12 | 12 |
13 VPNProvider::VPNProvider() : third_party(false) {} | 13 VPNProvider::VPNProvider() : third_party(false) {} |
14 | 14 |
15 VPNProvider::VPNProvider(const std::string& extension_id, | 15 VPNProvider::VPNProvider(const std::string& extension_id, |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 observer.OnVPNProvidersChanged(); | 74 observer.OnVPNProvidersChanged(); |
75 } | 75 } |
76 | 76 |
77 void VpnList::AddBuiltInProvider() { | 77 void VpnList::AddBuiltInProvider() { |
78 // The VPNProvider() constructor generates the built-in provider and has no | 78 // The VPNProvider() constructor generates the built-in provider and has no |
79 // extension ID. | 79 // extension ID. |
80 vpn_providers_.push_back(VPNProvider()); | 80 vpn_providers_.push_back(VPNProvider()); |
81 } | 81 } |
82 | 82 |
83 } // namespace ash | 83 } // namespace ash |
OLD | NEW |