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

Unified Diff: chrome_frame/test/ie_event_sink.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 | « chrome_frame/test/ie_event_sink.h ('k') | chrome_frame/test/mock_ie_event_sink_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/ie_event_sink.cc
===================================================================
--- chrome_frame/test/ie_event_sink.cc (revision 62784)
+++ chrome_frame/test/ie_event_sink.cc (working copy)
@@ -421,7 +421,7 @@
STDMETHODIMP_(void) IEEventSink::OnNavigateError(IDispatch* dispatch,
VARIANT* url, VARIANT* frame_name, VARIANT* status_code, VARIANT* cancel) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
if (listener_)
listener_->OnNavigateError(dispatch, url, frame_name, status_code, cancel);
}
@@ -430,8 +430,8 @@
IDispatch* dispatch, VARIANT* url, VARIANT* flags,
VARIANT* target_frame_name, VARIANT* post_data, VARIANT* headers,
VARIANT_BOOL* cancel) {
- DLOG(INFO) << __FUNCTION__
- << base::StringPrintf("%ls - 0x%08X", url->bstrVal, this);
+ DVLOG(1) << __FUNCTION__
+ << base::StringPrintf("%ls - 0x%08X", url->bstrVal, this);
// Reset any existing reference to chrome frame since this is a new
// navigation.
DisconnectFromChromeFrame();
@@ -443,7 +443,7 @@
STDMETHODIMP_(void) IEEventSink::OnNavigateComplete2(
IDispatch* dispatch, VARIANT* url) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
ConnectToChromeFrame();
if (listener_)
listener_->OnNavigateComplete2(dispatch, url);
@@ -451,7 +451,7 @@
STDMETHODIMP_(void) IEEventSink::OnDocumentComplete(
IDispatch* dispatch, VARIANT* url) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
EXPECT_TRUE(url);
if (!url)
return;
@@ -461,8 +461,8 @@
STDMETHODIMP_(void) IEEventSink::OnFileDownload(
VARIANT_BOOL active_doc, VARIANT_BOOL* cancel) {
- DLOG(INFO) << __FUNCTION__ << base::StringPrintf(" 0x%08X ad=%i", this,
- active_doc);
+ DVLOG(1) << __FUNCTION__
+ << base::StringPrintf(" 0x%08X ad=%i", this, active_doc);
if (listener_)
listener_->OnFileDownload(active_doc, cancel);
// Always cancel file downloads in tests.
@@ -472,7 +472,7 @@
STDMETHODIMP_(void) IEEventSink::OnNewWindow3(
IDispatch** dispatch, VARIANT_BOOL* cancel, DWORD flags, BSTR url_context,
BSTR url) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
EXPECT_TRUE(dispatch);
if (!dispatch)
return;
@@ -497,7 +497,7 @@
}
STDMETHODIMP_(void) IEEventSink::OnQuit() {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
did_receive_on_quit_ = true;
@@ -509,7 +509,7 @@
}
HRESULT IEEventSink::OnLoad(const VARIANT* param) {
- DLOG(INFO) << __FUNCTION__ << " " << param->bstrVal;
+ DVLOG(1) << __FUNCTION__ << " " << param->bstrVal;
ScopedVariant stack_object(*param);
if (chrome_frame_) {
if (listener_)
@@ -521,7 +521,7 @@
}
HRESULT IEEventSink::OnLoadError(const VARIANT* param) {
- DLOG(INFO) << __FUNCTION__ << " " << param->bstrVal;
+ DVLOG(1) << __FUNCTION__ << " " << param->bstrVal;
if (chrome_frame_) {
if (listener_)
listener_->OnLoadError(param->bstrVal);
@@ -532,7 +532,7 @@
}
HRESULT IEEventSink::OnMessage(const VARIANT* param) {
- DLOG(INFO) << __FUNCTION__ << " " << param;
+ DVLOG(1) << __FUNCTION__ << " " << param;
if (!chrome_frame_.get()) {
DLOG(WARNING) << "Invalid chrome frame pointer";
return S_OK;
« no previous file with comments | « chrome_frame/test/ie_event_sink.h ('k') | chrome_frame/test/mock_ie_event_sink_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698