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

Unified Diff: chrome_frame/bho.cc

Issue 3850002: Convert LOG(INFO) to VLOG(1) - chrome_frame/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome_frame/bind_status_callback_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/bho.cc
===================================================================
--- chrome_frame/bho.cc (revision 62784)
+++ chrome_frame/bho.cc (working copy)
@@ -118,7 +118,7 @@
return S_OK;
}
- DLOG(INFO) << "BeforeNavigate2: " << url->bstrVal;
+ DVLOG(1) << "BeforeNavigate2: " << url->bstrVal;
ScopedComPtr<IBrowserService> browser_service;
DoQueryService(SID_SShellBrowser, web_browser2, browser_service.Receive());
@@ -140,11 +140,11 @@
}
STDMETHODIMP_(void) Bho::NavigateComplete2(IDispatch* dispatch, VARIANT* url) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
}
STDMETHODIMP_(void) Bho::DocumentComplete(IDispatch* dispatch, VARIANT* url) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
ScopedComPtr<IWebBrowser2> web_browser2;
if (dispatch)
@@ -245,7 +245,7 @@
HRESULT Bho::OnHttpEquiv(IBrowserService_OnHttpEquiv_Fn original_httpequiv,
IBrowserService* browser, IShellView* shell_view, BOOL done,
VARIANT* in_arg, VARIANT* out_arg) {
- DLOG(INFO) << __FUNCTION__ << " done:" << done;
+ DVLOG(1) << __FUNCTION__ << " done:" << done;
// OnHttpEquiv with 'done' set to TRUE is called for all pages.
// 0 or more calls with done set to FALSE are made.
@@ -265,8 +265,8 @@
if (!DocumentHasEmbeddedItems(browser)) {
NavigationManager* mgr = NavigationManager::GetThreadInstance();
DCHECK(mgr);
- DLOG(INFO) << "Found tag in page. Marking browser." <<
- base::StringPrintf(" tid=0x%08X", ::GetCurrentThreadId());
+ DVLOG(1) << "Found tag in page. Marking browser."
+ << base::StringPrintf(" tid=0x%08X", ::GetCurrentThreadId());
if (mgr) {
// TODO(tommi): See if we can't figure out a cleaner way to avoid
// this. For some documents we can hit a problem here. When we
@@ -304,7 +304,7 @@
if (IsValidUrlScheme(GURL(current_url), false)) {
bool cf_protocol = StartsWith(current_url, kChromeProtocolPrefix, false);
if (!cf_protocol && IsChrome(RendererTypeForUrl(current_url))) {
- DLOG(INFO) << "Opt-in URL. Switching to cf.";
+ DVLOG(1) << "Opt-in URL. Switching to cf.";
ScopedComPtr<IBrowserService> browser_service;
DoQueryService(SID_SShellBrowser, browser, browser_service.Receive());
DCHECK(browser_service) << "DoQueryService - SID_SShellBrowser failed.";
« no previous file with comments | « no previous file | chrome_frame/bind_status_callback_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698