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 "base/at_exit.h" | 5 #include "base/at_exit.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/i18n/icu_util.h" | 7 #include "base/i18n/icu_util.h" |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
10 #include "media/base/media.h" | 10 #include "media/base/media.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 116 |
117 int main(int argc, char** argv) { | 117 int main(int argc, char** argv) { |
118 // This object instance is required by Chrome code (such as MessageLoop). | 118 // This object instance is required by Chrome code (such as MessageLoop). |
119 base::AtExitManager exit_manager; | 119 base::AtExitManager exit_manager; |
120 | 120 |
121 CommandLine::Init(argc, argv); | 121 CommandLine::Init(argc, argv); |
122 remoting::InitHostLogging(); | 122 remoting::InitHostLogging(); |
123 | 123 |
124 return remoting::It2MeNativeMessagingHostMain(); | 124 return remoting::It2MeNativeMessagingHostMain(); |
125 } | 125 } |
| 126 |
OLD | NEW |