summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/browser_main.cc')
-rw-r--r--chrome/browser/browser_main.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 0b4ffc3..f7145a4 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -64,7 +64,6 @@
#if defined(OS_LINUX)
#include "chrome/app/breakpad_linux.h"
-#include "chrome/browser/renderer_host/render_sandbox_host_linux.h"
#endif
// TODO(port): several win-only methods have been pulled out of this, but
@@ -219,8 +218,6 @@ void AddFirstRunNewTabs(BrowserInit* browser_init,
} // namespace
-extern void SkiaFontConfigUseDirectImplementation();
-
// Main routine for running as the Browser process.
int BrowserMain(const MainFunctionParams& parameters) {
const CommandLine& parsed_command_line = parameters.command_line_;
@@ -249,14 +246,6 @@ int BrowserMain(const MainFunctionParams& parameters) {
CHECK(sigaction(SIGCHLD, &action, NULL) == 0);
#endif
-#if defined(OS_LINUX)
- // Construct the sandbox host on the UI thread.
- Singleton<RenderSandboxHostLinux>::get();
-
- // Configure Skia in this process to use fontconfig directly.
- SkiaFontConfigUseDirectImplementation();
-#endif
-
// Do platform-specific things (such as finishing initializing Cocoa)
// prior to instantiating the message loop. This could be turned into a
// broadcast notification.