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

Unified Diff: chrome/test/chromedriver/client/command_executor.py

Issue 1022543002: [chromedriver] Implement DELETE NetworkConditions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Allocate on the stack Created 5 years, 9 months 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
« no previous file with comments | « chrome/test/chromedriver/client/chromedriver.py ('k') | chrome/test/chromedriver/server/http_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/client/command_executor.py
diff --git a/chrome/test/chromedriver/client/command_executor.py b/chrome/test/chromedriver/client/command_executor.py
index f3d6465b1cd8594e1ee4cd876b9a7025cf125af1..fd4a464fed17f7a6422921c9efc499d6be27b472 100644
--- a/chrome/test/chromedriver/client/command_executor.py
+++ b/chrome/test/chromedriver/client/command_executor.py
@@ -99,6 +99,8 @@ class Command(object):
_Method.GET, '/session/:sessionId/chromium/network_conditions')
SET_NETWORK_CONDITIONS = (
_Method.POST, '/session/:sessionId/chromium/network_conditions')
+ DELETE_NETWORK_CONDITIONS = (
+ _Method.DELETE, '/session/:sessionId/chromium/network_conditions')
GET_STATUS = (_Method.GET, '/session/:sessionId/application_cache/status')
IS_BROWSER_ONLINE = (_Method.GET, '/session/:sessionId/browser_connection')
SET_BROWSER_ONLINE = (_Method.POST, '/session/:sessionId/browser_connection')
« no previous file with comments | « chrome/test/chromedriver/client/chromedriver.py ('k') | chrome/test/chromedriver/server/http_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698