mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
13 lines
238 B
C
13 lines
238 B
C
|
#include "WindowCommand.h"
|
||
|
|
||
|
class WindowMaximize : public WindowCommand {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
WindowMaximize(WebPageManager *, QStringList &arguments, QObject *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
virtual void windowFound(WebPage *);
|
||
|
};
|
||
|
|