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

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

Issue 14263024: Logging API in chromedriver2. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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
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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 Status ExecuteSetWindowSize( 152 Status ExecuteSetWindowSize(
153 Session* session, 153 Session* session,
154 const base::DictionaryValue& params, 154 const base::DictionaryValue& params,
155 scoped_ptr<base::Value>* value); 155 scoped_ptr<base::Value>* value);
156 156
157 Status ExecuteMaximizeWindow( 157 Status ExecuteMaximizeWindow(
158 Session* session, 158 Session* session,
159 const base::DictionaryValue& params, 159 const base::DictionaryValue& params,
160 scoped_ptr<base::Value>* value); 160 scoped_ptr<base::Value>* value);
161 161
162 Status ExecuteGetAvailableLogTypes(
163 Session* session,
164 const base::DictionaryValue& params,
165 scoped_ptr<base::Value>* value);
166
167 Status ExecuteGetLog(
168 Session* session,
169 const base::DictionaryValue& params,
170 scoped_ptr<base::Value>* value);
171
162 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 172 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698