Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1192)

Unified Diff: chrome/test/webdriver/commands/create_session.cc

Issue 8649004: Allow chromedriver to install an extension and get all installed extension IDs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/webdriver/commands/create_session.cc
diff --git a/chrome/test/webdriver/commands/create_session.cc b/chrome/test/webdriver/commands/create_session.cc
index fd16c0ba9088ff06ef0c9aca950a7ab71dddd0a5..f78fa382d2a988bedc20bf36c32ffa7c614e6d1f 100644
--- a/chrome/test/webdriver/commands/create_session.cc
+++ b/chrome/test/webdriver/commands/create_session.cc
@@ -74,7 +74,7 @@ void CreateSession::ExecutePost(Response* const response) {
// Install extensions.
for (size_t i = 0; i < caps.extensions.size(); ++i) {
- Error* error = session->InstallExtension(caps.extensions[i]);
+ Error* error = session->InstallExtensionDeprecated(caps.extensions[i]);
if (error) {
response->SetError(error);
return;

Powered by Google App Engine
This is Rietveld 408576698