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

Unified Diff: chrome/browser/policy/cloud_policy_data_store.cc

Issue 9066005: Remove all old-style DeviceManagementService legacy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. Created 8 years, 12 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 | « chrome/browser/policy/cloud_policy_data_store.h ('k') | chrome/browser/policy/device_management_backend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/cloud_policy_data_store.cc
diff --git a/chrome/browser/policy/cloud_policy_data_store.cc b/chrome/browser/policy/cloud_policy_data_store.cc
index 061e4cd959802b9897d8d96a9f1612a3438da9cb..c44d0304ccab64d730a3eff1745e3789dabe1af0 100644
--- a/chrome/browser/policy/cloud_policy_data_store.cc
+++ b/chrome/browser/policy/cloud_policy_data_store.cc
@@ -29,7 +29,7 @@ CloudPolicyDataStore* CloudPolicyDataStore::CreateForDevicePolicies() {
CloudPolicyDataStore::CloudPolicyDataStore(
const em::DeviceRegisterRequest_Type policy_register_type,
const std::string& policy_type)
- : user_affiliation_(policy::USER_AFFILIATION_NONE),
+ : user_affiliation_(USER_AFFILIATION_NONE),
policy_register_type_(policy_register_type),
policy_type_(policy_type),
token_cache_loaded_(false) {}
@@ -102,7 +102,7 @@ void CloudPolicyDataStore::set_user_name(const std::string& user_name) {
}
void CloudPolicyDataStore::set_user_affiliation(
- policy::UserAffiliation user_affiliation) {
+ UserAffiliation user_affiliation) {
user_affiliation_ = user_affiliation;
}
@@ -147,7 +147,7 @@ const std::string& CloudPolicyDataStore::user_name() const {
return user_name_;
}
-policy::UserAffiliation CloudPolicyDataStore::user_affiliation() const {
+UserAffiliation CloudPolicyDataStore::user_affiliation() const {
return user_affiliation_;
}
« no previous file with comments | « chrome/browser/policy/cloud_policy_data_store.h ('k') | chrome/browser/policy/device_management_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698