| 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 9d4c85fea83e1c2a609ba34d0ec9cb67682a69eb..8b7aa7bd87c41e095df868d8c90099d54cd26888 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
|
| @@ -197,6 +197,18 @@ class AppCurrentWindowInternalSetAlwaysOnTopFunction
|
| virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
|
| };
|
|
|
| +class AppCurrentWindowInternalSetVisibleOnAllWorkspacesFunction
|
| + : public AppCurrentWindowInternalExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION(
|
| + "app.currentWindowInternal.setVisibleOnAllWorkspaces",
|
| + APP_CURRENTWINDOWINTERNAL_SETVISIBLEONALLWORKSPACES)
|
| +
|
| + protected:
|
| + virtual ~AppCurrentWindowInternalSetVisibleOnAllWorkspacesFunction() {}
|
| + virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
|
| +};
|
| +
|
| } // namespace extensions
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_API_APP_CURRENT_WINDOW_INTERNAL_APP_CURRENT_WINDOW_INTERNAL_API_H_
|
|
|