Index: chrome/browser/extensions/management_policy.h |
=================================================================== |
--- chrome/browser/extensions/management_policy.h (revision 142678) |
+++ chrome/browser/extensions/management_policy.h (working copy) |
@@ -46,7 +46,9 @@ |
virtual ~Provider() {} |
// A human-readable name for this provider, for use in debug messages. |
- virtual std::string GetPolicyProviderName() const = 0; |
+ // Implementers should return an empty string in non-debug builds, to save |
+ // executable size. |
+ virtual std::string GetDebugPolicyProviderName() const = 0; |
// Providers should return false if a user may not install the |extension|, |
// or load or run it if it has already been installed. |