| Index: chrome/browser/ui/webui/policy_ui_handler.h
|
| diff --git a/chrome/browser/ui/webui/policy_ui_handler.h b/chrome/browser/ui/webui/policy_ui_handler.h
|
| index 7a59b813db57e62e17ee59f13cae19650565ceca..bd0277b236a80f618a677a94240223126d936fbb 100644
|
| --- a/chrome/browser/ui/webui/policy_ui_handler.h
|
| +++ b/chrome/browser/ui/webui/policy_ui_handler.h
|
| @@ -30,7 +30,7 @@ struct PolicyStringMap {
|
| int string_id;
|
| };
|
|
|
| -class CloudPolicyStatusProvider;
|
| +class PolicyStatusProvider;
|
|
|
| // The JavaScript message handler for the chrome://policy page.
|
| class PolicyUIHandler : public content::WebUIMessageHandler,
|
| @@ -110,8 +110,8 @@ class PolicyUIHandler : public content::WebUIMessageHandler,
|
| // Providers that supply status dictionaries for user and device policy,
|
| // respectively. These are created on initialization time as appropriate for
|
| // the platform (Chrome OS / desktop) and type of policy that is in effect.
|
| - std::unique_ptr<CloudPolicyStatusProvider> user_status_provider_;
|
| - std::unique_ptr<CloudPolicyStatusProvider> device_status_provider_;
|
| + std::unique_ptr<PolicyStatusProvider> user_status_provider_;
|
| + std::unique_ptr<PolicyStatusProvider> device_status_provider_;
|
|
|
| base::WeakPtrFactory<PolicyUIHandler> weak_factory_;
|
|
|
|
|