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

Side by Side Diff: ash/common/system/chromeos/network/network_info.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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ash/common/system/chromeos/network/network_info.h"
6
7 namespace ash {
8
9 NetworkInfo::NetworkInfo()
10 : disable(false),
11 highlight(false),
12 connected(false),
13 connecting(false),
14 type(Type::UNKNOWN) {}
15
16 NetworkInfo::NetworkInfo(const std::string& guid)
17 : guid(guid),
18 disable(false),
19 highlight(false),
20 connected(false),
21 connecting(false),
22 type(Type::UNKNOWN) {}
23
24 NetworkInfo::~NetworkInfo() {}
25
26 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/chromeos/network/network_info.h ('k') | ash/common/system/chromeos/network/network_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698