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

Side by Side Diff: services/ui/service.cc

Issue 2208783002: Make Tracing Service not use outgoing InterfaceProvider, update conventions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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 | « services/ui/service.h ('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 "services/ui/service.h" 5 #include "services/ui/service.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/memory/ptr_util.h" 11 #include "base/memory/ptr_util.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "base/threading/platform_thread.h" 13 #include "base/threading/platform_thread.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "services/catalog/public/cpp/resource_loader.h" 15 #include "services/catalog/public/cpp/resource_loader.h"
16 #include "services/shell/public/c/main.h" 16 #include "services/shell/public/c/main.h"
17 #include "services/shell/public/cpp/connection.h" 17 #include "services/shell/public/cpp/connection.h"
18 #include "services/shell/public/cpp/connector.h" 18 #include "services/shell/public/cpp/connector.h"
19 #include "services/tracing/public/cpp/tracing_impl.h" 19 #include "services/tracing/public/cpp/provider.h"
20 #include "services/ui/clipboard/clipboard_impl.h" 20 #include "services/ui/clipboard/clipboard_impl.h"
21 #include "services/ui/common/switches.h" 21 #include "services/ui/common/switches.h"
22 #include "services/ui/display/platform_screen.h" 22 #include "services/ui/display/platform_screen.h"
23 #include "services/ui/gpu/gpu_service_impl.h" 23 #include "services/ui/gpu/gpu_service_impl.h"
24 #include "services/ui/gpu/gpu_service_mus.h" 24 #include "services/ui/gpu/gpu_service_mus.h"
25 #include "services/ui/ws/accessibility_manager.h" 25 #include "services/ui/ws/accessibility_manager.h"
26 #include "services/ui/ws/display.h" 26 #include "services/ui/ws/display.h"
27 #include "services/ui/ws/display_binding.h" 27 #include "services/ui/ws/display_binding.h"
28 #include "services/ui/ws/display_manager.h" 28 #include "services/ui/ws/display_manager.h"
29 #include "services/ui/ws/user_activity_monitor.h" 29 #include "services/ui/ws/user_activity_monitor.h"
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 // Display manages its own lifetime. 346 // Display manages its own lifetime.
347 ws::Display* host_impl = 347 ws::Display* host_impl =
348 new ws::Display(window_server_.get(), platform_display_init_params_); 348 new ws::Display(window_server_.get(), platform_display_init_params_);
349 host_impl->Init(nullptr); 349 host_impl->Init(nullptr);
350 350
351 if (touch_controller_) 351 if (touch_controller_)
352 touch_controller_->UpdateTouchTransforms(); 352 touch_controller_->UpdateTouchTransforms();
353 } 353 }
354 354
355 } // namespace ui 355 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698