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_paths.h" | 5 #include "base/base_paths.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/debug/crash_logging.h" |
7 #include "base/debug/debugger.h" | 8 #include "base/debug/debugger.h" |
8 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
9 #include "base/i18n/rtl.h" | 10 #include "base/i18n/rtl.h" |
10 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
11 #include "base/path_service.h" | 12 #include "base/path_service.h" |
12 #include "base/threading/platform_thread.h" | 13 #include "base/threading/platform_thread.h" |
13 #include "build/build_config.h" | 14 #include "build/build_config.h" |
14 #include "content/child/child_process.h" | 15 #include "content/child/child_process.h" |
15 #include "content/common/content_constants_internal.h" | 16 #include "content/common/content_constants_internal.h" |
16 #include "content/common/sandbox_linux/sandbox_linux.h" | 17 #include "content/common/sandbox_linux/sandbox_linux.h" |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 | 146 |
146 blink::WebFontRendering::setUseDirectWrite(use_direct_write); | 147 blink::WebFontRendering::setUseDirectWrite(use_direct_write); |
147 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale()); | 148 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale()); |
148 #endif | 149 #endif |
149 | 150 |
150 main_message_loop.Run(); | 151 main_message_loop.Run(); |
151 return 0; | 152 return 0; |
152 } | 153 } |
153 | 154 |
154 } // namespace content | 155 } // namespace content |
OLD | NEW |