Index: chrome/browser/policy/browser_policy_connector.cc |
diff --git a/chrome/browser/policy/browser_policy_connector.cc b/chrome/browser/policy/browser_policy_connector.cc |
index 630a832a62d900773a396438ee33049c0a147121..0dfc0863e571e8d44161a859b052ba2c7c5a4993 100644 |
--- a/chrome/browser/policy/browser_policy_connector.cc |
+++ b/chrome/browser/policy/browser_policy_connector.cc |
@@ -177,6 +177,13 @@ void BrowserPolicyConnector::StopAutoRetry() { |
cloud_policy_subsystem_->StopAutoRetry(); |
} |
+void BrowserPolicyConnector::FetchPolicy() { |
+#if defined(OS_CHROMEOS) |
+ if (identity_strategy_.get()) |
+ return identity_strategy_->FetchPolicy(); |
+#endif |
+} |
+ |
void BrowserPolicyConnector::Initialize() { |
// TODO(jkummerow, mnissler): Move this out of the browser startup path. |
if (cloud_policy_subsystem_.get()) { |