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

Side by Side Diff: chrome/test/webdriver/webdriver_logging.h

Issue 7104085: In chromedriver, add /log handler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/webdriver/utility_functions.cc ('k') | chrome/test/webdriver/webdriver_logging.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_TEST_WEBDRIVER_WEBDRIVER_LOGGING_H_
6 #define CHROME_TEST_WEBDRIVER_WEBDRIVER_LOGGING_H_
7
8 #include <string>
9
10 namespace webdriver {
11
12 // Initializes logging for WebDriver. All logging below the given level
13 // will be discarded.
14 void InitWebDriverLogging(int min_log_level);
15
16 // Retrieves the current contents of the WebDriver log file.
17 // Returns true on success.
18 bool GetLogContents(std::string* log_contents);
19
20 } // namespace webdriver
21
22 #endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_LOGGING_H_
OLDNEW
« no previous file with comments | « chrome/test/webdriver/utility_functions.cc ('k') | chrome/test/webdriver/webdriver_logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698