| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdlib.h> | 5 #include <stdlib.h> |
| 6 | 6 |
| 7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
| 8 #include <dwmapi.h> | 8 #include <dwmapi.h> |
| 9 #include <windows.h> | 9 #include <windows.h> |
| 10 #endif | 10 #endif |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 base::MessageLoop::Type message_loop_type = base::MessageLoop::TYPE_IO; | 132 base::MessageLoop::Type message_loop_type = base::MessageLoop::TYPE_IO; |
| 133 #if defined(OS_WIN) | 133 #if defined(OS_WIN) |
| 134 // Unless we're running on desktop GL, we don't need a UI message | 134 // Unless we're running on desktop GL, we don't need a UI message |
| 135 // loop, so avoid its use to work around apparent problems with some | 135 // loop, so avoid its use to work around apparent problems with some |
| 136 // third-party software. | 136 // third-party software. |
| 137 if (command_line.HasSwitch(switches::kUseGL) && | 137 if (command_line.HasSwitch(switches::kUseGL) && |
| 138 command_line.GetSwitchValueASCII(switches::kUseGL) == | 138 command_line.GetSwitchValueASCII(switches::kUseGL) == |
| 139 gfx::kGLImplementationDesktopName) { | 139 gfx::kGLImplementationDesktopName) { |
| 140 message_loop_type = base::MessageLoop::TYPE_UI; | 140 message_loop_type = base::MessageLoop::TYPE_UI; |
| 141 } | 141 } |
| 142 #elif defined(TOOLKIT_GTK) | |
| 143 message_loop_type = base::MessageLoop::TYPE_GPU; | |
| 144 #elif defined(OS_LINUX) | 142 #elif defined(OS_LINUX) |
| 145 message_loop_type = base::MessageLoop::TYPE_DEFAULT; | 143 message_loop_type = base::MessageLoop::TYPE_DEFAULT; |
| 146 #endif | 144 #endif |
| 147 | 145 |
| 148 base::MessageLoop main_message_loop(message_loop_type); | 146 base::MessageLoop main_message_loop(message_loop_type); |
| 149 base::PlatformThread::SetName("CrGpuMain"); | 147 base::PlatformThread::SetName("CrGpuMain"); |
| 150 | 148 |
| 151 // In addition to disabling the watchdog if the command line switch is | 149 // In addition to disabling the watchdog if the command line switch is |
| 152 // present, disable the watchdog on valgrind because the code is expected | 150 // present, disable the watchdog on valgrind because the code is expected |
| 153 // to run slowly in that case. | 151 // to run slowly in that case. |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 return true; | 450 return true; |
| 453 } | 451 } |
| 454 | 452 |
| 455 return false; | 453 return false; |
| 456 } | 454 } |
| 457 #endif // defined(OS_WIN) | 455 #endif // defined(OS_WIN) |
| 458 | 456 |
| 459 } // namespace. | 457 } // namespace. |
| 460 | 458 |
| 461 } // namespace content | 459 } // namespace content |
| OLD | NEW |