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

Unified Diff: chrome/browser/chromeos/settings/device_settings_test_helper.h

Issue 12538009: Public Sessions: fetch device robot api token during enterprise enrollment. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: updated tests Created 7 years, 8 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
Index: chrome/browser/chromeos/settings/device_settings_test_helper.h
diff --git a/chrome/browser/chromeos/settings/device_settings_test_helper.h b/chrome/browser/chromeos/settings/device_settings_test_helper.h
index d689947725deb29193d852905f791e8714f97d7f..92ce7ccacd7631f621743dd7cb901c6213677def 100644
--- a/chrome/browser/chromeos/settings/device_settings_test_helper.h
+++ b/chrome/browser/chromeos/settings/device_settings_test_helper.h
@@ -51,17 +51,17 @@ class DeviceSettingsTestHelper : public SessionManagerClient {
bool HasPendingOperations() const;
bool store_result() {
- return device_policy_.store_result_;
+ return policy_state_.store_result_;
}
void set_store_result(bool store_result) {
- device_policy_.store_result_ = store_result;
+ policy_state_.store_result_ = store_result;
}
const std::string& policy_blob() {
- return device_policy_.policy_blob_;
+ return policy_state_.policy_blob_;
}
void set_policy_blob(const std::string& policy_blob) {
- device_policy_.policy_blob_ = policy_blob;
+ policy_state_.policy_blob_ = policy_blob;
}
const std::string& device_local_account_policy_blob(
@@ -123,7 +123,7 @@ class DeviceSettingsTestHelper : public SessionManagerClient {
}
};
- PolicyState device_policy_;
+ PolicyState policy_state_;
Mattias Nissler (ping if slow) 2013/04/22 10:59:00 I see where you're coming from, but if you feel st
David Roche 2013/04/23 01:36:08 I was actually confused by the fact that there was
std::map<std::string, PolicyState> device_local_account_policy_;
DISALLOW_COPY_AND_ASSIGN(DeviceSettingsTestHelper);

Powered by Google App Engine
This is Rietveld 408576698