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

Side by Side Diff: content/child/child_thread_impl.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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
OLDNEW
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 "content/child/child_thread_impl.h" 5 #include "content/child/child_thread_impl.h"
6 6
7 #include <signal.h> 7 #include <signal.h>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #include "ipc/attachment_broker_unprivileged.h" 60 #include "ipc/attachment_broker_unprivileged.h"
61 #include "ipc/ipc_channel_mojo.h" 61 #include "ipc/ipc_channel_mojo.h"
62 #include "ipc/ipc_logging.h" 62 #include "ipc/ipc_logging.h"
63 #include "ipc/ipc_platform_file.h" 63 #include "ipc/ipc_platform_file.h"
64 #include "ipc/ipc_sync_channel.h" 64 #include "ipc/ipc_sync_channel.h"
65 #include "ipc/ipc_sync_message_filter.h" 65 #include "ipc/ipc_sync_message_filter.h"
66 #include "mojo/edk/embedder/embedder.h" 66 #include "mojo/edk/embedder/embedder.h"
67 #include "mojo/edk/embedder/named_platform_channel_pair.h" 67 #include "mojo/edk/embedder/named_platform_channel_pair.h"
68 #include "mojo/edk/embedder/platform_channel_pair.h" 68 #include "mojo/edk/embedder/platform_channel_pair.h"
69 #include "mojo/edk/embedder/scoped_ipc_support.h" 69 #include "mojo/edk/embedder/scoped_ipc_support.h"
70 #include "services/shell/public/cpp/connector.h" 70 #include "services/service_manager/public/cpp/connector.h"
71 #include "services/shell/public/cpp/interface_factory.h" 71 #include "services/service_manager/public/cpp/interface_factory.h"
72 #include "services/shell/public/cpp/interface_provider.h" 72 #include "services/service_manager/public/cpp/interface_provider.h"
73 #include "services/shell/public/cpp/interface_registry.h" 73 #include "services/service_manager/public/cpp/interface_registry.h"
74 #include "services/shell/runner/common/client_util.h" 74 #include "services/service_manager/runner/common/client_util.h"
75 75
76 #if defined(OS_POSIX) 76 #if defined(OS_POSIX)
77 #include "base/posix/global_descriptors.h" 77 #include "base/posix/global_descriptors.h"
78 #include "content/public/common/content_descriptors.h" 78 #include "content/public/common/content_descriptors.h"
79 #endif 79 #endif
80 80
81 using tracked_objects::ThreadData; 81 using tracked_objects::ThreadData;
82 82
83 namespace content { 83 namespace content {
84 namespace { 84 namespace {
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 Listener* route = router_.GetRoute(routing_id); 864 Listener* route = router_.GetRoute(routing_id);
865 if (route) 865 if (route)
866 route->OnAssociatedInterfaceRequest(name, request.PassHandle()); 866 route->OnAssociatedInterfaceRequest(name, request.PassHandle());
867 } 867 }
868 868
869 bool ChildThreadImpl::IsInBrowserProcess() const { 869 bool ChildThreadImpl::IsInBrowserProcess() const {
870 return static_cast<bool>(browser_process_io_runner_); 870 return static_cast<bool>(browser_process_io_runner_);
871 } 871 }
872 872
873 } // namespace content 873 } // namespace content
OLDNEW
« no previous file with comments | « content/child/background_sync/background_sync_provider.cc ('k') | content/child/service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698