diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-04 00:39:03 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-04 00:39:03 +0000 |
commit | b5e17c9de9881d77386bb1b4cd62c05d7cbf5bc5 (patch) | |
tree | 32ad114ffa8348be7c4caa2b85309629bf7d957a /win8/test | |
parent | 6507703f97e4b068245005dd9475bb529a45673e (diff) | |
download | chromium_src-b5e17c9de9881d77386bb1b4cd62c05d7cbf5bc5.zip chromium_src-b5e17c9de9881d77386bb1b4cd62c05d7cbf5bc5.tar.gz chromium_src-b5e17c9de9881d77386bb1b4cd62c05d7cbf5bc5.tar.bz2 |
Fix two __FUNCTIONS__I missed in https://codereview.chromium.org/357583002/
BUG=82385
TBR=cpu@chromium.org
Review URL: https://codereview.chromium.org/369953002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281348 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'win8/test')
-rw-r--r-- | win8/test/ui_automation_client.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win8/test/ui_automation_client.cc b/win8/test/ui_automation_client.cc index 153b917..bb5082e 100644 --- a/win8/test/ui_automation_client.cc +++ b/win8/test/ui_automation_client.cc @@ -542,7 +542,7 @@ HRESULT UIAutomationClient::Context::GetInvokableItems( continue; } if (V_VT(&var) != VT_BSTR) { - LOG(ERROR) << __FUNCTION__ " name is not a BSTR: " << V_VT(&var); + LOG(ERROR) << __FUNCTION__ << " name is not a BSTR: " << V_VT(&var); continue; } choices->push_back(base::string16(V_BSTR(&var))); @@ -573,7 +573,8 @@ void UIAutomationClient::Context::CloseWindow( } if (V_VT(&var) != VT_I4) { - LOG(ERROR) << __FUNCTION__ " window handle is not an int: " << V_VT(&var); + LOG(ERROR) << __FUNCTION__ + << " window handle is not an int: " << V_VT(&var); return; } |