| Index: extensions/browser/extension_function.h
|
| diff --git a/extensions/browser/extension_function.h b/extensions/browser/extension_function.h
|
| index c62e1f77846b30e94835d9a3510ac0e9939259d4..40ac407ca5d4a40ed7205e519117c81874a8a5c8 100644
|
| --- a/extensions/browser/extension_function.h
|
| +++ b/extensions/browser/extension_function.h
|
| @@ -168,6 +168,13 @@ class ExtensionFunction
|
| ~ScopedUserGestureForTests();
|
| };
|
|
|
| + // A string used in the case of an unknown error being detected.
|
| + // DON'T USE THIS. It's only here during conversion to flag cases where errors
|
| + // aren't already set.
|
| + // TODO(devlin): Remove this if/when all functions are updated to return real
|
| + // errors.
|
| + static const char* kUnknownErrorDoNotUse;
|
| +
|
| // Called before Run() in order to perform a common verification check so that
|
| // APIs subclassing this don't have to roll their own RunSafe() variants.
|
| // If this returns false, then Run() is never called, and the function
|
|
|