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

Unified Diff: chrome_frame/task_marshaller.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/protocol_sink_wrap.cc ('k') | chrome_frame/test/chrome_frame_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/task_marshaller.cc
===================================================================
--- chrome_frame/task_marshaller.cc (revision 62784)
+++ chrome_frame/task_marshaller.cc (working copy)
@@ -1,6 +1,7 @@
// Copyright (c) 2010 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.
+
#include "chrome_frame/task_marshaller.h"
#include "base/task.h"
@@ -27,13 +28,14 @@
return;
if (!::PostMessage(wnd_, msg_, 0, 0)) {
- DLOG(INFO) << "Dropping MSG_EXECUTE_TASK message for destroyed window.";
+ DVLOG(1) << "Dropping MSG_EXECUTE_TASK message for destroyed window.";
DeleteAll();
}
}
void TaskMarshallerThroughMessageQueue::PostDelayedTask(
- const tracked_objects::Location& source, Task* task,
+ const tracked_objects::Location& source,
+ Task* task,
base::TimeDelta& delay) {
DCHECK(wnd_ != NULL);
AutoLock lock(lock_);
@@ -47,8 +49,11 @@
}
BOOL TaskMarshallerThroughMessageQueue::ProcessWindowMessage(HWND hWnd,
- UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& lResult,
- DWORD dwMsgMapID) {
+ UINT uMsg,
+ WPARAM wParam,
+ LPARAM lParam,
+ LRESULT& lResult,
+ DWORD dwMsgMapID) {
if (hWnd == wnd_ && uMsg == msg_) {
ExecuteQueuedTasks();
lResult = 0;
« no previous file with comments | « chrome_frame/protocol_sink_wrap.cc ('k') | chrome_frame/test/chrome_frame_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698