| Index: chrome/test/webdriver/webdriver_server.cc
|
| diff --git a/chrome/test/webdriver/webdriver_server.cc b/chrome/test/webdriver/webdriver_server.cc
|
| index 1c33fcbc95558ac3eb8be063f8907750b7abdbc7..cc3639d15aa7a3d87119631a339e1ea324f2e031 100644
|
| --- a/chrome/test/webdriver/webdriver_server.cc
|
| +++ b/chrome/test/webdriver/webdriver_server.cc
|
| @@ -31,6 +31,7 @@
|
| #include "chrome/test/webdriver/commands/alert_commands.h"
|
| #include "chrome/test/webdriver/commands/appcache_status_command.h"
|
| #include "chrome/test/webdriver/commands/browser_connection_commands.h"
|
| +#include "chrome/test/webdriver/commands/chrome_commands.h"
|
| #include "chrome/test/webdriver/commands/cookie_commands.h"
|
| #include "chrome/test/webdriver/commands/create_session.h"
|
| #include "chrome/test/webdriver/commands/execute_async_script_command.h"
|
| @@ -141,6 +142,9 @@ void InitCallbacks(Dispatcher* dispatcher,
|
| dispatcher->Add<BrowserConnectionCommand>("/session/*/browser_connection");
|
| dispatcher->Add<AppCacheStatusCommand>("/session/*/application_cache/status");
|
|
|
| + // Chrome-specific command.
|
| + dispatcher->Add<ExtensionsCommand>("/session/*/chrome/extensions");
|
| +
|
| // Since the /session/* is a wild card that would match the above URIs, this
|
| // line MUST be after all other webdriver command callbacks.
|
| dispatcher->Add<SessionWithID>("/session/*");
|
|
|