OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/message_loop.h" | 6 #include "base/message_loop.h" |
| 7 #include "base/string_util.h" |
7 #include "base/system_monitor.h" | 8 #include "base/system_monitor.h" |
8 #include "chrome/common/chrome_constants.h" | 9 #include "chrome/common/chrome_constants.h" |
9 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
10 #include "chrome/common/logging_chrome.h" | 11 #include "chrome/common/logging_chrome.h" |
11 #include "chrome/common/main_function_params.h" | 12 #include "chrome/common/main_function_params.h" |
12 #include "chrome/common/win_util.h" | 13 #include "chrome/common/win_util.h" |
13 #include "chrome/plugin/plugin_process.h" | 14 #include "chrome/plugin/plugin_process.h" |
14 #include "chrome/test/injection_test_dll.h" | 15 #include "chrome/test/injection_test_dll.h" |
15 #include "sandbox/src/sandbox.h" | 16 #include "sandbox/src/sandbox.h" |
16 | 17 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 // Load the accelerator table from the browser executable and tell the | 82 // Load the accelerator table from the browser executable and tell the |
82 // message loop to use it when translating messages. | 83 // message loop to use it when translating messages. |
83 MessageLoop::current()->Run(); | 84 MessageLoop::current()->Run(); |
84 } | 85 } |
85 PluginProcess::GlobalCleanup(); | 86 PluginProcess::GlobalCleanup(); |
86 | 87 |
87 CoUninitialize(); | 88 CoUninitialize(); |
88 return 0; | 89 return 0; |
89 } | 90 } |
90 | 91 |
OLD | NEW |