From 5e0e7ba01cd780d09327976077f2d224ae10aabf Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Sat, 9 Feb 2013 23:06:43 +0000 Subject: [PATCH] Remove unnecessary console messages (issue #642). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1364@1095 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- cef3/patch/patch.cfg | 5 +++++ cef3/patch/patches/renderer_main_642.patch | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 cef3/patch/patches/renderer_main_642.patch diff --git a/cef3/patch/patch.cfg b/cef3/patch/patch.cfg index f7106e497..ac86c8348 100644 --- a/cef3/patch/patch.cfg +++ b/cef3/patch/patch.cfg @@ -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', diff --git a/cef3/patch/patches/renderer_main_642.patch b/cef3/patch/patches/renderer_main_642.patch new file mode 100644 index 000000000..369330d2b --- /dev/null +++ b/cef3/patch/patches/renderer_main_642.patch @@ -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