| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/base_switches.h" | 5 #include "base/base_switches.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/debug/debugger.h" | 7 #include "base/debug/debugger.h" |
| 8 #include "base/debug/stack_trace.h" | 8 #include "base/debug/stack_trace.h" |
| 9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
| 10 #include "base/i18n/rtl.h" | 10 #include "base/i18n/rtl.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "content/public/common/content_switches.h" | 25 #include "content/public/common/content_switches.h" |
| 26 #include "content/public/common/main_function_params.h" | 26 #include "content/public/common/main_function_params.h" |
| 27 #include "content/public/renderer/content_renderer_client.h" | 27 #include "content/public/renderer/content_renderer_client.h" |
| 28 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" | 28 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" |
| 29 #include "content/renderer/pepper/pepper_plugin_registry.h" | 29 #include "content/renderer/pepper/pepper_plugin_registry.h" |
| 30 #include "content/renderer/render_process_impl.h" | 30 #include "content/renderer/render_process_impl.h" |
| 31 #include "content/renderer/render_thread_impl.h" | 31 #include "content/renderer/render_thread_impl.h" |
| 32 #include "content/renderer/renderer_main_platform_delegate.h" | 32 #include "content/renderer/renderer_main_platform_delegate.h" |
| 33 #include "ui/base/ui_base_switches.h" | 33 #include "ui/base/ui_base_switches.h" |
| 34 #include "webkit/child/webkit_child_helpers.h" | 34 #include "webkit/child/webkit_child_helpers.h" |
| 35 #include "webkit/glue/webkit_glue.h" | |
| 36 | 35 |
| 37 #if defined(OS_ANDROID) | 36 #if defined(OS_ANDROID) |
| 38 #include "base/android/sys_utils.h" | 37 #include "base/android/sys_utils.h" |
| 39 #include "third_party/skia/include/core/SkGraphics.h" | 38 #include "third_party/skia/include/core/SkGraphics.h" |
| 40 #endif // OS_ANDROID | 39 #endif // OS_ANDROID |
| 41 | 40 |
| 42 #if defined(OS_MACOSX) | 41 #if defined(OS_MACOSX) |
| 43 #include <Carbon/Carbon.h> | 42 #include <Carbon/Carbon.h> |
| 44 #include <signal.h> | 43 #include <signal.h> |
| 45 #include <unistd.h> | 44 #include <unistd.h> |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 base::MessageLoop::current()->Run(); | 251 base::MessageLoop::current()->Run(); |
| 253 TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0); | 252 TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0); |
| 254 } | 253 } |
| 255 } | 254 } |
| 256 platform.PlatformUninitialize(); | 255 platform.PlatformUninitialize(); |
| 257 TRACE_EVENT_END_ETW("RendererMain", 0, ""); | 256 TRACE_EVENT_END_ETW("RendererMain", 0, ""); |
| 258 return 0; | 257 return 0; |
| 259 } | 258 } |
| 260 | 259 |
| 261 } // namespace content | 260 } // namespace content |
| OLD | NEW |