Sha256: d6683a431f1d2a338bbd551f6ddc98eb12d4d7ae33d67da0b31af226b934866f

Contents?: true

Size: 333 Bytes

Versions: 4

Compression:

Stored size: 333 Bytes

Contents

#include "NullCommand.h"
#include "WebPage.h"
#include "WebPageManager.h"

NullCommand::NullCommand(QString name, QObject *parent) : Command(parent) {
  m_name = name;
}

void NullCommand::start() {
  QString failure = QString("[Capybara WebKit] Unknown command: ") + m_name + "\n";
  emit finished(new Response(false, failure));
}

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
capybara-webkit-0.13.2 src/NullCommand.cpp
capybara-webkit-0.13.1 src/NullCommand.cpp
capybara-webkit-0.13.0 src/NullCommand.cpp
otherinbox-capybara-webkit-0.12.0.1 src/NullCommand.cpp