diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-09 05:16:10 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-09 05:16:10 +0000 |
commit | 08fa155a8696f5779507ec735ad157a4d45fe1d8 (patch) | |
tree | 03e2bd1167a6cbc38b4b97d6310005c1302673f8 /chrome/test/webdriver/webdriver_logging.h | |
parent | d67d10528eb68753d19db1698b3688fa48fa44b3 (diff) | |
download | chromium_src-08fa155a8696f5779507ec735ad157a4d45fe1d8.zip chromium_src-08fa155a8696f5779507ec735ad157a4d45fe1d8.tar.gz chromium_src-08fa155a8696f5779507ec735ad157a4d45fe1d8.tar.bz2 |
Revert 88492 - In chromedriver, add /log url to get the contents of the chromedriver log
remotely. Also add a 'chrome.verbose' boolean startup option.
Remove usage of VLOG(1) in chromedriver. We do not need as complicated
logging as in Chrome.
BUG=85241
TEST=none
Review URL: http://codereview.chromium.org/7139001
TBR=kkania@chromium.org
Review URL: http://codereview.chromium.org/7108037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/webdriver/webdriver_logging.h')
-rw-r--r-- | chrome/test/webdriver/webdriver_logging.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/chrome/test/webdriver/webdriver_logging.h b/chrome/test/webdriver/webdriver_logging.h deleted file mode 100644 index 2b8ab5e..0000000 --- a/chrome/test/webdriver/webdriver_logging.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef CHROME_TEST_WEBDRIVER_WEBDRIVER_LOGGING_H_ -#define CHROME_TEST_WEBDRIVER_WEBDRIVER_LOGGING_H_ - -#include <string> - -namespace webdriver { - -// Initializes logging for WebDriver. All logging below the given level -// will be discarded. -void InitWebDriverLogging(int min_log_level); - -// Retrieves the current contents of the WebDriver log file. -// Returns true on success. -bool GetLogContents(std::string* log_contents); - -} // namespace webdriver - -#endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_LOGGING_H_ |