| Index: chrome/test/chromedriver/capabilities.cc
|
| ===================================================================
|
| --- chrome/test/chromedriver/capabilities.cc (revision 194587)
|
| +++ chrome/test/chromedriver/capabilities.cc (working copy)
|
| @@ -12,6 +12,7 @@
|
| #include "base/stringprintf.h"
|
| #include "base/values.h"
|
| #include "chrome/test/chromedriver/chrome/status.h"
|
| +#include "chrome/test/chromedriver/logging.h"
|
|
|
| namespace {
|
|
|
| @@ -221,6 +222,7 @@
|
| std::map<std::string, Parser> parser_map;
|
| parser_map["proxy"] = base::Bind(&ParseProxy);
|
| parser_map["chromeOptions"] = base::Bind(&ParseDesktopChromeOption);
|
| + parser_map["loggingPrefs"] = base::Bind(&ParseLoggingPrefs);
|
| for (std::map<std::string, Parser>::iterator it = parser_map.begin();
|
| it != parser_map.end(); ++it) {
|
| const base::Value* capability = NULL;
|
|
|