12d01e4fd5
This is a hacky solution but helps us deal with other compiler/linker errors.
39 lines
920 B
C++
39 lines
920 B
C++
// 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"
|
|
|
|
#include "base/command_line.h"
|
|
#include "content/public/common/content_switches.h"
|
|
|
|
namespace brightray {
|
|
|
|
MainDelegate::MainDelegate() {
|
|
}
|
|
|
|
MainDelegate::~MainDelegate() {
|
|
}
|
|
|
|
scoped_ptr<ContentClient> MainDelegate::CreateContentClient() {
|
|
return make_scoped_ptr(new ContentClient).Pass();
|
|
}
|
|
|
|
bool MainDelegate::BasicStartupComplete(int* exit_code) {
|
|
content_client_ = CreateContentClient().Pass();
|
|
SetContentClient(content_client_.get());
|
|
return false;
|
|
}
|
|
|
|
void MainDelegate::PreSandboxStartup() {
|
|
#if defined(OS_MACOSX)
|
|
OverrideChildProcessPath();
|
|
OverrideFrameworkBundlePath();
|
|
InitializeResourceBundle();
|
|
#endif
|
|
}
|
|
|
|
}
|