| Index: chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.h
|
| diff --git a/chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.h b/chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.h
|
| index da0e359635dfb069a7fadf11e4bb4b27cd809476..26aafcd0894252b5930de327bc8f7cabf2712df2 100644
|
| --- a/chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.h
|
| +++ b/chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.h
|
| @@ -82,6 +82,26 @@ class AppCurrentWindowInternalClearAttentionFunction
|
| virtual bool RunWithWindow(ShellWindow* window) OVERRIDE;
|
| };
|
|
|
| +class AppCurrentWindowInternalShowFunction
|
| + : public AppCurrentWindowInternalExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION_NAME("app.currentWindowInternal.show");
|
| +
|
| + protected:
|
| + virtual ~AppCurrentWindowInternalShowFunction() {}
|
| + virtual bool RunWithWindow(ShellWindow* window) OVERRIDE;
|
| +};
|
| +
|
| +class AppCurrentWindowInternalHideFunction
|
| + : public AppCurrentWindowInternalExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION_NAME("app.currentWindowInternal.hide");
|
| +
|
| + protected:
|
| + virtual ~AppCurrentWindowInternalHideFunction() {}
|
| + virtual bool RunWithWindow(ShellWindow* window) OVERRIDE;
|
| +};
|
| +
|
| } // namespace extensions
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_API_APP_CURRENT_WINDOW_INTERNAL_APP_CURRENT_WINDOW_INTERNAL_API_H_
|
|
|