summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_test_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_test_api.h')
-rw-r--r--chrome/browser/extensions/extension_test_api.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_test_api.h b/chrome/browser/extensions/extension_test_api.h
index 6ab6857..79adf13 100644
--- a/chrome/browser/extensions/extension_test_api.h
+++ b/chrome/browser/extensions/extension_test_api.h
@@ -8,19 +8,21 @@
#include "chrome/browser/extensions/extension_function.h"
class ExtensionTestPassFunction : public SyncExtensionFunction {
+ ~ExtensionTestPassFunction() {}
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("test.notifyPass")
};
class ExtensionTestFailFunction : public SyncExtensionFunction {
+ ~ExtensionTestFailFunction() {}
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("test.notifyFail")
};
class ExtensionTestLogFunction : public SyncExtensionFunction {
+ ~ExtensionTestLogFunction() {}
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("test.log")
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TEST_API_H_
-