Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: ui/ozone/demo/ozone_demo.cc

Issue 2729523006: Remove the |max_threads| argument from CreateAndSetSimpleTaskScheduler(). (Closed)
Patch Set: fix build error Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/test/chromoting_test_driver.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <utility> 5 #include <utility>
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 base::CommandLine::Init(argc, argv); 330 base::CommandLine::Init(argc, argv);
331 base::AtExitManager exit_manager; 331 base::AtExitManager exit_manager;
332 332
333 // Initialize logging so we can enable VLOG messages. 333 // Initialize logging so we can enable VLOG messages.
334 logging::LoggingSettings settings; 334 logging::LoggingSettings settings;
335 logging::InitLogging(settings); 335 logging::InitLogging(settings);
336 336
337 // Build UI thread message loop. This is used by platform 337 // Build UI thread message loop. This is used by platform
338 // implementations for event polling & running background tasks. 338 // implementations for event polling & running background tasks.
339 base::MessageLoopForUI message_loop; 339 base::MessageLoopForUI message_loop;
340 constexpr int kMaxTaskSchedulerThreads = 3; 340 base::TaskScheduler::CreateAndSetSimpleTaskScheduler("OzoneDemo");
341 base::TaskScheduler::CreateAndSetSimpleTaskScheduler(
342 kMaxTaskSchedulerThreads);
343 341
344 ui::OzonePlatform::InitializeForUI(); 342 ui::OzonePlatform::InitializeForUI();
345 ui::KeyboardLayoutEngineManager::GetKeyboardLayoutEngine() 343 ui::KeyboardLayoutEngineManager::GetKeyboardLayoutEngine()
346 ->SetCurrentLayoutByName("us"); 344 ->SetCurrentLayoutByName("us");
347 345
348 base::RunLoop run_loop; 346 base::RunLoop run_loop;
349 347
350 WindowManager window_manager(run_loop.QuitClosure()); 348 WindowManager window_manager(run_loop.QuitClosure());
351 349
352 run_loop.Run(); 350 run_loop.Run();
353 351
354 return 0; 352 return 0;
355 } 353 }
OLDNEW
« no previous file with comments | « remoting/test/chromoting_test_driver.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698