summaryrefslogtreecommitdiffstats
path: root/chromeos/network/network_profile.cc
blob: bfdfd90313018b60e339df7aac3ca1fd21f69d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/network/network_profile.h"

#include "base/logging.h"
#include "base/strings/stringprintf.h"

namespace chromeos {

std::string NetworkProfile::ToDebugString() const {
  std::string result;
  if (type() == NetworkProfile::TYPE_SHARED) {
    return base::StringPrintf("NetworkProfile(SHARED, %s)",
                              path.c_str());
  } else if (type() == NetworkProfile::TYPE_USER) {
    return base::StringPrintf("NetworkProfile(USER, %s, %s)",
                              path.c_str(),
                              userhash.c_str());
  }
  NOTREACHED();
  return std::string();
}

}  // namespace chromeos