| Index: extensions/browser/test_management_policy.h
|
| diff --git a/extensions/browser/test_management_policy.h b/extensions/browser/test_management_policy.h
|
| index f59e015890c028cc5a612dad462a34a5dc15ecd2..106ae3a0580ce9234a15570b24f2836894c36891 100644
|
| --- a/extensions/browser/test_management_policy.h
|
| +++ b/extensions/browser/test_management_policy.h
|
| @@ -38,17 +38,17 @@ class TestManagementPolicyProvider : public ManagementPolicy::Provider {
|
| virtual std::string GetDebugPolicyProviderName() const OVERRIDE;
|
|
|
| virtual bool UserMayLoad(const Extension* extension,
|
| - string16* error) const OVERRIDE;
|
| + base::string16* error) const OVERRIDE;
|
|
|
| virtual bool UserMayModifySettings(const Extension* extension,
|
| - string16* error) const OVERRIDE;
|
| + base::string16* error) const OVERRIDE;
|
|
|
| virtual bool MustRemainEnabled(const Extension* extension,
|
| - string16* error) const OVERRIDE;
|
| + base::string16* error) const OVERRIDE;
|
|
|
| virtual bool MustRemainDisabled(const Extension* extension,
|
| Extension::DisableReason* reason,
|
| - string16* error) const OVERRIDE;
|
| + base::string16* error) const OVERRIDE;
|
|
|
| private:
|
| bool may_load_;
|
| @@ -57,7 +57,7 @@ class TestManagementPolicyProvider : public ManagementPolicy::Provider {
|
| bool must_remain_disabled_;
|
| Extension::DisableReason disable_reason_;
|
|
|
| - string16 error_message_;
|
| + base::string16 error_message_;
|
| };
|
|
|
| } // namespace extensions
|
|
|