diff options
author | grt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 17:27:11 +0000 |
---|---|---|
committer | grt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 17:27:11 +0000 |
commit | 3fa1e6f635218c2838ad9de205bd8e32df3a9905 (patch) | |
tree | 801c6b87785c6e8e0d4ee6d3ce1e11f68a38c632 /chrome_frame/test/ie_event_sink.h | |
parent | 24ea8f46ed38cf3ddd5f465c3e6d10c7a1d2ca1f (diff) | |
download | chromium_src-3fa1e6f635218c2838ad9de205bd8e32df3a9905.zip chromium_src-3fa1e6f635218c2838ad9de205bd8e32df3a9905.tar.gz chromium_src-3fa1e6f635218c2838ad9de205bd8e32df3a9905.tar.bz2 |
Log WebBrowser event method names rather than DISPID integer values for more comprehensible logs, and log the method and path received by the test web server when it handles a request. Such logging is no longer limited to debug builds.
BUG=none
TEST=run any GCF test with --v=1 and watch the events fly by
Review URL: http://codereview.chromium.org/9272004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/test/ie_event_sink.h')
-rw-r--r-- | chrome_frame/test/ie_event_sink.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/chrome_frame/test/ie_event_sink.h b/chrome_frame/test/ie_event_sink.h index 2a0496d..d9c0e6f 100644 --- a/chrome_frame/test/ie_event_sink.h +++ b/chrome_frame/test/ie_event_sink.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -211,19 +211,13 @@ END_SINK_MAP() VARIANT_BOOL* cancel); STDMETHOD_(void, OnQuit)(); -#ifndef NDEBUG STDMETHOD(Invoke)(DISPID dispid, REFIID riid, LCID lcid, WORD flags, DISPPARAMS* params, VARIANT* result, EXCEPINFO* except_info, - UINT* arg_error) { - DVLOG(1) << __FUNCTION__ << L" disp id :" << dispid; - return DispEventsImpl::Invoke(dispid, riid, lcid, flags, params, result, - except_info, arg_error); - } -#endif // _DEBUG + UINT* arg_error); // IChromeFrame callbacks HRESULT OnLoad(const VARIANT* param); |