summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorghc@google.com <ghc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-21 03:48:56 +0000
committerghc@google.com <ghc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-21 03:48:56 +0000
commit70dde0c72bf999c17b481c3d32cbf33a003ccd54 (patch)
tree8cd5ddcca013e97c71f1971b0a08626612bc238c /chrome
parent65d256c1fa1fa9638ca74a79bd5abab677df5994 (diff)
downloadchromium_src-70dde0c72bf999c17b481c3d32cbf33a003ccd54.zip
chromium_src-70dde0c72bf999c17b481c3d32cbf33a003ccd54.tar.gz
chromium_src-70dde0c72bf999c17b481c3d32cbf33a003ccd54.tar.bz2
common-case startup from persisted state should now involve a single client-server exchange (one message each direction) with no synthetic invalidations.
Review URL: http://codereview.chromium.org/7471002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93329 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/sync/notifier/chrome_system_resources.cc17
1 files changed, 6 insertions, 11 deletions
diff --git a/chrome/browser/sync/notifier/chrome_system_resources.cc b/chrome/browser/sync/notifier/chrome_system_resources.cc
index ede395c..be370c2 100644
--- a/chrome/browser/sync/notifier/chrome_system_resources.cc
+++ b/chrome/browser/sync/notifier/chrome_system_resources.cc
@@ -39,17 +39,12 @@ void ChromeLogger::Log(LogLevel level, const char* file, int line,
log_severity = logging::LOG_ERROR;
break;
}
- // We treat LOG(INFO) as VLOG(1).
- if ((log_severity >= logging::GetMinLogLevel()) &&
- ((log_severity != logging::LOG_INFO) ||
- (1 <= logging::GetVlogLevelHelper(file, ::strlen(file))))) {
- va_list ap;
- va_start(ap, format);
- std::string result;
- base::StringAppendV(&result, format, ap);
- logging::LogMessage(file, line, log_severity).stream() << result;
- va_end(ap);
- }
+ va_list ap;
+ va_start(ap, format);
+ std::string result;
+ base::StringAppendV(&result, format, ap);
+ logging::LogMessage(file, line, log_severity).stream() << result;
+ va_end(ap);
}
ChromeScheduler::ChromeScheduler()