Add some instrumentation for jank in URLRequest::Start.
[chromium-blink-merge.git] / chromeos / network / network_profile.h
blobfc11a0c33d1f1691e5da791c5a86c55e06417693
1 // Copyright (c) 2013 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.
5 #ifndef CHROMEOS_NETWORK_NETWORK_PROFILE_H_
6 #define CHROMEOS_NETWORK_NETWORK_PROFILE_H_
8 #include <string>
10 #include "chromeos/chromeos_export.h"
12 namespace chromeos {
14 struct CHROMEOS_EXPORT NetworkProfile {
15 enum Type {
16 TYPE_SHARED, // Shared by all users on the device.
17 TYPE_USER // Not visible to other users.
20 NetworkProfile(const std::string& profile_path,
21 const std::string& user_hash)
22 : path(profile_path),
23 userhash(user_hash) {
26 std::string path;
27 std::string userhash; // Only set for user profiles.
29 Type type() const {
30 return userhash.empty() ? TYPE_SHARED : TYPE_USER;
33 std::string ToDebugString() const;
36 } // namespace chromeos
38 #endif // CHROMEOS_NETWORK_NETWORK_PROFILE_H_