OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "remoting/host/it2me/it2me_native_messaging_host_main.h" | 5 #include "remoting/host/it2me/it2me_native_messaging_host_main.h" |
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/i18n/icu_util.h" | 9 #include "base/i18n/icu_util.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 12 #include "media/base/media.h" |
12 #include "net/socket/ssl_server_socket.h" | 13 #include "net/socket/ssl_server_socket.h" |
13 #include "remoting/base/breakpad.h" | 14 #include "remoting/base/breakpad.h" |
14 #include "remoting/base/resources.h" | 15 #include "remoting/base/resources.h" |
15 #include "remoting/host/chromoting_host_context.h" | |
16 #include "remoting/host/host_exit_codes.h" | 16 #include "remoting/host/host_exit_codes.h" |
17 #include "remoting/host/it2me/it2me_native_messaging_host.h" | 17 #include "remoting/host/it2me/it2me_native_messaging_host.h" |
18 #include "remoting/host/logging.h" | 18 #include "remoting/host/logging.h" |
19 #include "remoting/host/native_messaging/native_messaging_pipe.h" | 19 #include "remoting/host/native_messaging/native_messaging_pipe.h" |
20 #include "remoting/host/native_messaging/pipe_messaging_channel.h" | 20 #include "remoting/host/native_messaging/pipe_messaging_channel.h" |
21 #include "remoting/host/usage_stats_consent.h" | 21 #include "remoting/host/usage_stats_consent.h" |
22 | 22 |
23 #if defined(OS_LINUX) | 23 #if defined(OS_LINUX) |
24 #include <gtk/gtk.h> | 24 #include <gtk/gtk.h> |
25 #include <X11/Xlib.h> | 25 #include <X11/Xlib.h> |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 // Required for any calls into GTK functions, such as the Disconnect and | 73 // Required for any calls into GTK functions, such as the Disconnect and |
74 // Continue windows. Calling with NULL arguments because we don't have | 74 // Continue windows. Calling with NULL arguments because we don't have |
75 // any command line arguments for gtk to consume. | 75 // any command line arguments for gtk to consume. |
76 gtk_init(NULL, NULL); | 76 gtk_init(NULL, NULL); |
77 #endif // OS_LINUX | 77 #endif // OS_LINUX |
78 | 78 |
79 // Enable support for SSL server sockets, which must be done while still | 79 // Enable support for SSL server sockets, which must be done while still |
80 // single-threaded. | 80 // single-threaded. |
81 net::EnableSSLServerSockets(); | 81 net::EnableSSLServerSockets(); |
82 | 82 |
| 83 // Ensures runtime specific CPU features are initialized. |
| 84 media::InitializeCPUSpecificMediaFeatures(); |
| 85 |
83 #if defined(OS_WIN) | 86 #if defined(OS_WIN) |
84 // GetStdHandle() returns pseudo-handles for stdin and stdout even if | 87 // GetStdHandle() returns pseudo-handles for stdin and stdout even if |
85 // the hosting executable specifies "Windows" subsystem. However the returned | 88 // the hosting executable specifies "Windows" subsystem. However the returned |
86 // handles are invalid in that case unless standard input and output are | 89 // handles are invalid in that case unless standard input and output are |
87 // redirected to a pipe or file. | 90 // redirected to a pipe or file. |
88 base::File read_file(GetStdHandle(STD_INPUT_HANDLE)); | 91 base::File read_file(GetStdHandle(STD_INPUT_HANDLE)); |
89 base::File write_file(GetStdHandle(STD_OUTPUT_HANDLE)); | 92 base::File write_file(GetStdHandle(STD_OUTPUT_HANDLE)); |
90 | 93 |
91 // After the native messaging channel starts the native messaging reader | 94 // After the native messaging channel starts the native messaging reader |
92 // will keep doing blocking read operations on the input named pipe. | 95 // will keep doing blocking read operations on the input named pipe. |
(...skipping 23 matching lines...) Expand all Loading... |
116 scoped_ptr<It2MeHostFactory> factory(new It2MeHostFactory()); | 119 scoped_ptr<It2MeHostFactory> factory(new It2MeHostFactory()); |
117 | 120 |
118 scoped_ptr<NativeMessagingPipe> native_messaging_pipe( | 121 scoped_ptr<NativeMessagingPipe> native_messaging_pipe( |
119 new NativeMessagingPipe()); | 122 new NativeMessagingPipe()); |
120 | 123 |
121 // Set up the native messaging channel. | 124 // Set up the native messaging channel. |
122 scoped_ptr<extensions::NativeMessagingChannel> channel( | 125 scoped_ptr<extensions::NativeMessagingChannel> channel( |
123 new PipeMessagingChannel(read_file.Pass(), write_file.Pass())); | 126 new PipeMessagingChannel(read_file.Pass(), write_file.Pass())); |
124 | 127 |
125 scoped_ptr<extensions::NativeMessageHost> host(new It2MeNativeMessagingHost( | 128 scoped_ptr<extensions::NativeMessageHost> host(new It2MeNativeMessagingHost( |
126 ChromotingHostContext::Create(task_runner), factory.Pass())); | 129 task_runner, |
| 130 factory.Pass())); |
127 | 131 |
128 host->Start(native_messaging_pipe.get()); | 132 host->Start(native_messaging_pipe.get()); |
129 | 133 |
130 native_messaging_pipe->Start( | 134 native_messaging_pipe->Start( |
131 host.Pass(), channel.Pass(), run_loop.QuitClosure()); | 135 host.Pass(), channel.Pass(), run_loop.QuitClosure()); |
132 | 136 |
133 // Run the loop until channel is alive. | 137 // Run the loop until channel is alive. |
134 run_loop.Run(); | 138 run_loop.Run(); |
135 | 139 |
136 return kSuccessExitCode; | 140 return kSuccessExitCode; |
137 } | 141 } |
138 | 142 |
139 int It2MeNativeMessagingHostMain(int argc, char** argv) { | 143 int It2MeNativeMessagingHostMain(int argc, char** argv) { |
140 // This object instance is required by Chrome code (such as MessageLoop). | 144 // This object instance is required by Chrome code (such as MessageLoop). |
141 base::AtExitManager exit_manager; | 145 base::AtExitManager exit_manager; |
142 | 146 |
143 base::CommandLine::Init(argc, argv); | 147 base::CommandLine::Init(argc, argv); |
144 remoting::InitHostLogging(); | 148 remoting::InitHostLogging(); |
145 | 149 |
146 return StartIt2MeNativeMessagingHost(); | 150 return StartIt2MeNativeMessagingHost(); |
147 } | 151 } |
148 | 152 |
149 } // namespace remoting | 153 } // namespace remoting |
OLD | NEW |