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

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

Issue 101203012: [chromedriver] Add an error autoreporting feature that automatically raises errors from browser logs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from review Created 6 years, 11 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.cc ('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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 Status ExecuteGetLog( 146 Status ExecuteGetLog(
147 Session* session, 147 Session* session,
148 const base::DictionaryValue& params, 148 const base::DictionaryValue& params,
149 scoped_ptr<base::Value>* value); 149 scoped_ptr<base::Value>* value);
150 150
151 Status ExecuteUploadFile( 151 Status ExecuteUploadFile(
152 Session* session, 152 Session* session,
153 const base::DictionaryValue& params, 153 const base::DictionaryValue& params,
154 scoped_ptr<base::Value>* value); 154 scoped_ptr<base::Value>* value);
155 155
156 Status ExecuteIsAutoReporting(
157 Session* session,
158 const base::DictionaryValue& params,
159 scoped_ptr<base::Value>* value);
160
161 Status ExecuteSetAutoReporting(
162 Session* session,
163 const base::DictionaryValue& params,
164 scoped_ptr<base::Value>* value);
165
156 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 166 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/session.cc ('k') | chrome/test/chromedriver/session_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698