Index: chrome/browser/extensions/extension_function.h |
diff --git a/chrome/browser/extensions/extension_function.h b/chrome/browser/extensions/extension_function.h |
index 238f8e4e9aa1bc46825b4977faaea771a47ea437..6090f8a1307c33fa361a0aa459b2a8813d9f2a4a 100644 |
--- a/chrome/browser/extensions/extension_function.h |
+++ b/chrome/browser/extensions/extension_function.h |
@@ -22,6 +22,9 @@ class Profile; |
} \ |
} while (0) |
+#define DECLARE_EXTENSION_FUNCTION_NAME(name) \ |
+ public: static const char* function_name() { return name; } |
+ |
// Abstract base class for extension functions the ExtensionFunctionDispatcher |
// knows how to dispatch to. |
// |