Add patch to remove unnecessary console messages (issue #642).

git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1453@1255 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-05-08 18:33:52 +00:00
parent 7127926379
commit 52b1159aa8
2 changed files with 18 additions and 0 deletions

View File

@ -51,6 +51,11 @@ patches = [
'name': 'renderer_host_953',
'path': '../content/browser/renderer_host/',
},
{
# http://code.google.com/p/chromiumembedded/issues/detail?id=642
'name': 'renderer_main_642',
'path': '../content/renderer/',
},
{
# http://code.google.com/p/chromiumembedded/issues/detail?id=364
'name': 'spi_webcore_364',

View File

@ -0,0 +1,13 @@
Index: renderer_main.cc
===================================================================
--- renderer_main.cc (revision 197225)
+++ renderer_main.cc (working copy)
@@ -200,7 +200,7 @@
if (!no_sandbox) {
run_loop = platform.EnableSandbox();
} else {
- LOG(ERROR) << "Running without renderer sandbox";
+ // LOG(ERROR) << "Running without renderer sandbox";
#ifndef NDEBUG
// For convenience, we print the stack trace for crashes. We can't get
// symbols when the sandbox is enabled, so only try when the sandbox is