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

Side by Side Diff: remoting/host/it2me/it2me_native_messaging_host_main.cc

Issue 138833009: For C++ readability review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698