mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove unnecessary console messages (issue #642).
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1180@719 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -21,6 +21,16 @@ patches = [
|
|||||||
'name': 'tools_gyp',
|
'name': 'tools_gyp',
|
||||||
'path': '../tools/gyp/',
|
'path': '../tools/gyp/',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
# 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=642
|
||||||
|
'name': 'window_impl_642',
|
||||||
|
'path': '../ui/base/win/',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
# http://code.google.com/p/chromiumembedded/issues/detail?id=364
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=364
|
||||||
'name': 'spi_webcore_364',
|
'name': 'spi_webcore_364',
|
||||||
|
13
cef3/patch/patches/renderer_main_642.patch
Normal file
13
cef3/patch/patches/renderer_main_642.patch
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
Index: renderer_main.cc
|
||||||
|
===================================================================
|
||||||
|
--- renderer_main.cc (revision 144645)
|
||||||
|
+++ renderer_main.cc (working copy)
|
||||||
|
@@ -246,7 +246,7 @@
|
||||||
|
if (!no_sandbox) {
|
||||||
|
run_loop = platform.EnableSandbox();
|
||||||
|
} else {
|
||||||
|
- LOG(ERROR) << "Running without renderer sandbox";
|
||||||
|
+ //LOG(ERROR) << "Running without renderer sandbox";
|
||||||
|
}
|
||||||
|
#if defined(OS_POSIX) && !defined(OS_MACOSX)
|
||||||
|
RenderProcessImpl render_process;
|
15
cef3/patch/patches/window_impl_642.patch
Normal file
15
cef3/patch/patches/window_impl_642.patch
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Index: window_impl.cc
|
||||||
|
===================================================================
|
||||||
|
--- window_impl.cc (revision 144645)
|
||||||
|
+++ window_impl.cc (working copy)
|
||||||
|
@@ -52,8 +52,8 @@
|
||||||
|
for (RegisteredClasses::iterator i = registered_classes_.begin();
|
||||||
|
i != registered_classes_.end(); ++i) {
|
||||||
|
if (!UnregisterClass(MAKEINTATOM(i->atom), i->instance)) {
|
||||||
|
- LOG(ERROR) << "Failed to unregister class " << i->name.c_str()
|
||||||
|
- << ". Error = " << GetLastError();
|
||||||
|
+ //LOG(ERROR) << "Failed to unregister class " << i->name.c_str()
|
||||||
|
+ // << ". Error = " << GetLastError();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user