1 // Copyright 2012 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "base/at_exit.h" 6 #include "base/command_line.h" 7 #include "base/message_loop/message_loop.h" 8 #include "base/run_loop.h" 9 10 int main(int argc, char** argv) { 11 base::AtExitManager at_exit; 12 CommandLine::Init(argc, argv); 13 14 base::MessageLoop message_loop(base::MessageLoop::TYPE_UI); 15 16 base::RunLoop().Run(); 17 18 return 0; 19 } 20