Chromium Code Reviews| Index: chrome/test/webdriver/commands/command.cc |
| diff --git a/chrome/test/webdriver/commands/command.cc b/chrome/test/webdriver/commands/command.cc |
| index e524f6eecaa46142bf87c4b621a2fc489f201b53..94be0382e9d8a7c5167fbf073e12eb96761dcbbf 100644 |
| --- a/chrome/test/webdriver/commands/command.cc |
| +++ b/chrome/test/webdriver/commands/command.cc |
| @@ -37,5 +37,10 @@ bool Command::GetIntegerParameter(const std::string& key, |
| return parameters_.get() != NULL && parameters_->GetInteger(key, out); |
| } |
| +bool Command::GetDictionaryParameter(const std::string& key, |
|
kkania
2011/01/28 23:25:59
can we just get rid of these functions and let par
Joe
2011/02/03 10:02:05
It was like that in the original version but Jason
|
| + DictionaryValue** out) const { |
| + return parameters_.get() != NULL && parameters_->GetDictionary(key, out); |
| +} |
| + |
| } // namespace webdriver |