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

Side by Side Diff: chrome/renderer/renderer_main.cc

Issue 4079: Porting refactoring changes:... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 2 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 (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/path_service.h" 7 #include "base/path_service.h"
8 #include "base/platform_thread.h" 8 #include "base/platform_thread.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "chrome/common/chrome_constants.h" 10 #include "chrome/common/chrome_constants.h"
11 #include "chrome/common/chrome_counters.h" 11 #include "chrome/common/chrome_counters.h"
12 #include "chrome/common/chrome_switches.h" 12 #include "chrome/common/chrome_switches.h"
13 #include "chrome/common/env_util.h"
14 #include "chrome/common/l10n_util.h" 13 #include "chrome/common/l10n_util.h"
15 #include "chrome/common/logging_chrome.h" 14 #include "chrome/common/logging_chrome.h"
16 #include "chrome/common/resource_bundle.h" 15 #include "chrome/common/resource_bundle.h"
17 #include "chrome/renderer/render_process.h" 16 #include "chrome/renderer/render_process.h"
18 #include "chrome/test/injection_test_dll.h" 17 #include "chrome/test/injection_test_dll.h"
19 #include "sandbox/src/sandbox.h" 18 #include "sandbox/src/sandbox.h"
20 19
21 #include "chromium_strings.h" 20 #include "chromium_strings.h"
22 #include "generated_resources.h" 21 #include "generated_resources.h"
23 22
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 // message loop to use it when translating messages. 107 // message loop to use it when translating messages.
109 MessageLoop::current()->Run(); 108 MessageLoop::current()->Run();
110 } 109 }
111 } 110 }
112 RenderProcess::GlobalCleanup(); 111 RenderProcess::GlobalCleanup();
113 112
114 CoUninitialize(); 113 CoUninitialize();
115 return 0; 114 return 0;
116 } 115 }
117 116
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698