| Index: chrome/test/webdriver/commands/title_command.h
|
| diff --git a/chrome/test/webdriver/commands/title_command.h b/chrome/test/webdriver/commands/title_command.h
|
| index c9925c28e1b4e3f22f5884d95369bbac5b20650a..e017b293dec79e688ac07bd60a78141938be02af 100644
|
| --- a/chrome/test/webdriver/commands/title_command.h
|
| +++ b/chrome/test/webdriver/commands/title_command.h
|
| @@ -16,16 +16,15 @@ namespace webdriver {
|
| // http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/title
|
| class TitleCommand : public WebDriverCommand {
|
| public:
|
| - inline TitleCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| - : WebDriverCommand(path_segments, parameters) {}
|
| - virtual ~TitleCommand() {}
|
| + TitleCommand(const std::vector<std::string>& path_segments,
|
| + const DictionaryValue* const parameters);
|
| + virtual ~TitleCommand();
|
|
|
| - virtual bool DoesGet() { return true; }
|
| + virtual bool DoesGet();
|
| virtual void ExecuteGet(Response* const response);
|
|
|
| private:
|
| - virtual bool RequiresValidTab() { return true; }
|
| + virtual bool RequiresValidTab();
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TitleCommand);
|
| };
|
|
|