| Index: chrome/browser/automation/automation_extension_function.h
|
| diff --git a/chrome/browser/automation/automation_extension_function.h b/chrome/browser/automation/automation_extension_function.h
|
| index 828b0f4935e8700c55e538bf978150c96cd1d051..275d3c92b874c838fbe485faed3550c71ab805e1 100644
|
| --- a/chrome/browser/automation/automation_extension_function.h
|
| +++ b/chrome/browser/automation/automation_extension_function.h
|
| @@ -21,7 +21,7 @@ class TabContents;
|
| // automation interface, so that extensions can be tested using UITests.
|
| class AutomationExtensionFunction : public AsyncExtensionFunction {
|
| public:
|
| - AutomationExtensionFunction() { }
|
| + AutomationExtensionFunction();
|
|
|
| // ExtensionFunction implementation.
|
| virtual void SetArgs(const ListValue* args);
|
| @@ -59,7 +59,7 @@ class AutomationExtensionFunction : public AsyncExtensionFunction {
|
| const std::string& target);
|
|
|
| private:
|
| - ~AutomationExtensionFunction() {}
|
| + ~AutomationExtensionFunction();
|
|
|
| // Weak reference, lifetime managed by the ExternalTabContainer instance
|
| // owning the TabContents in question.
|
|
|