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

Side by Side Diff: chrome/plugin/plugin_main.cc

Issue 20072: Finish taking out render_messages.h include from other headers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 (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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698