Remove unnecessary console messages (issue #642).
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1364@1095 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
d8e9606e8c
commit
5e0e7ba01c
|
@ -41,6 +41,11 @@ patches = [
|
|||
'name': 'browser_prefs_600',
|
||||
'path': '../chrome/browser/prefs/',
|
||||
},
|
||||
{
|
||||
# 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',
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
Index: renderer_main.cc
|
||||
===================================================================
|
||||
--- renderer_main.cc (revision 180609)
|
||||
+++ renderer_main.cc (working copy)
|
||||
@@ -174,7 +174,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
|
Loading…
Reference in New Issue