Index: chrome/browser/extensions/api/runtime/runtime_api.h |
diff --git a/chrome/browser/extensions/api/runtime/runtime_api.h b/chrome/browser/extensions/api/runtime/runtime_api.h |
index 9b2f10e51b44f8d9e812a7b64e023f0d853ccf99..b9e868b89a129043f5be53632d5b0cbd92b40805 100644 |
--- a/chrome/browser/extensions/api/runtime/runtime_api.h |
+++ b/chrome/browser/extensions/api/runtime/runtime_api.h |
@@ -22,9 +22,13 @@ class RuntimeEventRouter { |
}; |
class RuntimeGetBackgroundPageFunction : public AsyncExtensionFunction { |
+ public: |
+ DECLARE_EXTENSION_FUNCTION_NAME("runtime.getBackgroundPage"); |
+ |
protected: |
+ virtual ~RuntimeGetBackgroundPageFunction() {} |
virtual bool RunImpl() OVERRIDE; |
- DECLARE_EXTENSION_FUNCTION_NAME("runtime.getBackgroundPage"); |
+ |
private: |
void OnPageLoaded(ExtensionHost*); |
}; |