diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-12 14:03:25 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-12 14:03:25 +0000 |
commit | 06e3c95d557951207b8436bf86fc8c8abf927a18 (patch) | |
tree | 118cd66b5ad3b027dfee6f9cf6deb75666ecb3d2 /ipc | |
parent | d117c34d6ab62241570ffbf6fbe8b379a5ffe985 (diff) | |
download | chromium_src-06e3c95d557951207b8436bf86fc8c8abf927a18.zip chromium_src-06e3c95d557951207b8436bf86fc8c8abf927a18.tar.gz chromium_src-06e3c95d557951207b8436bf86fc8c8abf927a18.tar.bz2 |
Revert "Revert 205443 "headless windows content_shell""
Also, add more verbose debug output to LOGFONT pickle code
The NOTREACHED() is reached on WebKit Win7 (dbg) bots, but I cannot reproduce
locally, so I need more data from the bots
I'll revert the CL once the Webkit Win Debug builder cycled once.
BUG=248520
TBR=jam@chromium.org
Review URL: https://codereview.chromium.org/16309013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205772 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_message_utils.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ipc/ipc_message_utils.cc b/ipc/ipc_message_utils.cc index 0cdc2b4ef..b23c0d3 100644 --- a/ipc/ipc_message_utils.cc +++ b/ipc/ipc_message_utils.cc @@ -789,6 +789,8 @@ bool ParamTraits<LOGFONT>::Read(const Message* m, PickleIterator* iter, memcpy(r, data, sizeof(LOGFONT)); return true; } + std::wstring font_name(font->lfFaceName, LF_FACESIZE); + LOG(ERROR) << "Invalid LOGFONT '" << WideToUTF8(font_name) << "'"; } NOTREACHED(); |