Index: chromeos/network/favorite_state.h |
diff --git a/chromeos/network/favorite_state.h b/chromeos/network/favorite_state.h |
index 53f92811c58c00550cebabb243df823ab0031714..1eaadf59278b860cfbb91e6bc89f7ba26d71ab82 100644 |
--- a/chromeos/network/favorite_state.h |
+++ b/chromeos/network/favorite_state.h |
@@ -32,6 +32,7 @@ class CHROMEOS_EXPORT FavoriteState : public ManagedState { |
const std::string& profile_path() const { return profile_path_; } |
bool is_favorite() const { return !profile_path_.empty(); } |
const NetworkUIData& ui_data() const { return ui_data_; } |
+ const std::string& guid() const { return guid_; } |
// Returns true if the ONC source is a device or user policy. |
bool IsManaged() const; |
@@ -42,6 +43,7 @@ class CHROMEOS_EXPORT FavoriteState : public ManagedState { |
private: |
std::string profile_path_; |
NetworkUIData ui_data_; |
+ std::string guid_; |
DISALLOW_COPY_AND_ASSIGN(FavoriteState); |
}; |