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

Unified Diff: extensions/browser/test_management_policy.h

Issue 107803004: Add base:: to string16 in extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove a using Created 7 years 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 | « extensions/browser/management_policy_unittest.cc ('k') | extensions/browser/test_management_policy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « extensions/browser/management_policy_unittest.cc ('k') | extensions/browser/test_management_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698