Index: chrome/test/webdriver/server.cc |
=================================================================== |
--- chrome/test/webdriver/server.cc (revision 96198) |
+++ chrome/test/webdriver/server.cc (working copy) |
@@ -29,6 +29,8 @@ |
#include "chrome/common/chrome_paths.h" |
#include "chrome/common/chrome_switches.h" |
#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/cookie_commands.h" |
#include "chrome/test/webdriver/commands/create_session.h" |
#include "chrome/test/webdriver/commands/execute_async_script_command.h" |
@@ -136,6 +138,9 @@ |
dispatcher->Add<CookieCommand>( "/session/*/cookie"); |
dispatcher->Add<NamedCookieCommand>("/session/*/cookie/*"); |
+ dispatcher->Add<BrowserConnectionCommand>("/session/*/browser_connection"); |
+ dispatcher->Add<AppCacheStatusCommand>("/session/*/application_cache/status"); |
+ |
// 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/*"); |