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

Side by Side Diff: ash/system/network/vpn_list.cc

Issue 2732813002: chromeos: Move files in //ash/common to //ash, part 1 (Closed)
Patch Set: rebase Created 3 years, 9 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/network/vpn_list.h ('k') | ash/system/network/vpn_list_unittest.cc » ('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 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
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
OLDNEW
« no previous file with comments | « ash/system/network/vpn_list.h ('k') | ash/system/network/vpn_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698