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

Unified Diff: chromeos/network/favorite_state.cc

Issue 21030006: NetworkState cleanup, pass properties to InitialPropertiesReceived (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/network/favorite_state.h ('k') | chromeos/network/managed_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/favorite_state.cc
diff --git a/chromeos/network/favorite_state.cc b/chromeos/network/favorite_state.cc
index 2d5caa3f21a10ae3f84615a0e2d2e5f4e015081c..90043e9cfc24abc6f465f4c19107f191caeb233b 100644
--- a/chromeos/network/favorite_state.cc
+++ b/chromeos/network/favorite_state.cc
@@ -43,8 +43,9 @@ bool FavoriteState::IsManaged() const {
onc_source_ == onc::ONC_SOURCE_USER_POLICY;
}
-bool FavoriteState::IsShared() const {
- return profile_path_ == NetworkProfileHandler::kSharedProfilePath;
+bool FavoriteState::IsPrivate() const {
+ return !profile_path_.empty() &&
+ profile_path_ != NetworkProfileHandler::kSharedProfilePath;
}
} // namespace chromeos
« no previous file with comments | « chromeos/network/favorite_state.h ('k') | chromeos/network/managed_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698