Last active
August 29, 2015 14:00
-
-
Save tiagovignatti/11189296 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc | |
index 56a24f7..b2c930d 100644 | |
--- a/content/browser/browser_main_loop.cc | |
+++ b/content/browser/browser_main_loop.cc | |
@@ -879,7 +879,8 @@ void BrowserMainLoop::ShutdownThreadsAndCleanUp() { | |
if (BrowserGpuChannelHostFactory::instance()) | |
BrowserGpuChannelHostFactory::Terminate(); | |
-#if defined(USE_OZONE) | |
+#if 0 | |
+ defined(USE_OZONE) | |
if (OzoneChannelHostFactory::instance()) | |
OzoneChannelHostFactory::Terminate(); | |
#endif | |
@@ -1055,7 +1056,8 @@ int BrowserMainLoop::BrowserThreadsStarted() { | |
} | |
#endif // defined(OS_MACOSX) | |
-#if defined(USE_OZONE) | |
+#if 0 | |
+defined(USE_OZONE) | |
bool using_gpu_process = | |
!parsed_command_line_.HasSwitch(switches::kSingleProcess) && | |
!parsed_command_line_.HasSwitch(switches::kInProcessGPU); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment