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

Side by Side Diff: chrome/test/chromedriver/session_commands.h

Issue 883083002: [chromedriver] Add Network Conditions Override Manager and tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix warning 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 unified diff | Download patch
« no previous file with comments | « chrome/test/chromedriver/session.h ('k') | chrome/test/chromedriver/session_commands.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
6 #define CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 6 #define CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 Status ExecuteLaunchApp( 111 Status ExecuteLaunchApp(
112 Session* session, 112 Session* session,
113 const base::DictionaryValue& params, 113 const base::DictionaryValue& params,
114 scoped_ptr<base::Value>* value); 114 scoped_ptr<base::Value>* value);
115 115
116 Status ExecuteGetLocation( 116 Status ExecuteGetLocation(
117 Session* session, 117 Session* session,
118 const base::DictionaryValue& params, 118 const base::DictionaryValue& params,
119 scoped_ptr<base::Value>* value); 119 scoped_ptr<base::Value>* value);
120 120
121 Status ExecuteGetNetworkConditions(
122 Session* session,
123 const base::DictionaryValue& params,
124 scoped_ptr<base::Value>* value);
125
121 Status ExecuteGetWindowPosition( 126 Status ExecuteGetWindowPosition(
122 Session* session, 127 Session* session,
123 const base::DictionaryValue& params, 128 const base::DictionaryValue& params,
124 scoped_ptr<base::Value>* value); 129 scoped_ptr<base::Value>* value);
125 130
126 Status ExecuteSetWindowPosition( 131 Status ExecuteSetWindowPosition(
127 Session* session, 132 Session* session,
128 const base::DictionaryValue& params, 133 const base::DictionaryValue& params,
129 scoped_ptr<base::Value>* value); 134 scoped_ptr<base::Value>* value);
130 135
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 Session* session, 167 Session* session,
163 const base::DictionaryValue& params, 168 const base::DictionaryValue& params,
164 scoped_ptr<base::Value>* value); 169 scoped_ptr<base::Value>* value);
165 170
166 Status ExecuteSetAutoReporting( 171 Status ExecuteSetAutoReporting(
167 Session* session, 172 Session* session,
168 const base::DictionaryValue& params, 173 const base::DictionaryValue& params,
169 scoped_ptr<base::Value>* value); 174 scoped_ptr<base::Value>* value);
170 175
171 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 176 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/session.h ('k') | chrome/test/chromedriver/session_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698