electron/brightray/common/main_delegate.cc

39 lines
923 B
C++
Raw Normal View History

2013-03-13 19:12:05 +00:00
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file.
#include "common/main_delegate.h"
#include "browser/browser_client.h"
#include "common/content_client.h"
2013-03-13 19:12:05 +00:00
#include "base/command_line.h"
#include "content/public/common/content_switches.h"
namespace brightray {
MainDelegate::MainDelegate()
: content_client_(new ContentClient) {
2013-03-13 19:12:05 +00:00
}
MainDelegate::~MainDelegate() {
}
bool MainDelegate::BasicStartupComplete(int* exit_code) {
SetContentClient(content_client_.get());
return false;
}
2013-03-13 19:12:05 +00:00
void MainDelegate::PreSandboxStartup() {
// FIXME: We don't currently support running sandboxed.
CommandLine::ForCurrentProcess()->AppendSwitch(switches::kNoSandbox);
#if defined(OS_MACOSX)
OverrideChildProcessPath();
OverrideFrameworkBundlePath();
#endif
InitializeResourceBundle();
2013-03-13 19:12:05 +00:00
}
}