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.
|
|
|
|
|
2013-03-13 19:42:16 +00:00
|
|
|
#ifndef BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
|
|
|
|
#define BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2016-05-23 06:08:20 +00:00
|
|
|
#include <memory>
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
2016-05-23 06:08:20 +00:00
|
|
|
|
2016-05-23 01:59:07 +00:00
|
|
|
#include "base/macros.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "content/public/app/content_main_delegate.h"
|
2013-04-26 15:04:51 +00:00
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2014-07-12 13:16:13 +00:00
|
|
|
namespace ui {
|
|
|
|
class ResourceBundle;
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
namespace brightray {
|
|
|
|
|
2013-12-03 22:12:21 +00:00
|
|
|
class BrowserClient;
|
2013-03-14 13:03:50 +00:00
|
|
|
class ContentClient;
|
|
|
|
|
2018-02-08 14:26:37 +00:00
|
|
|
void LoadResourceBundle(const std::string& locale);
|
2017-01-17 14:55:28 +00:00
|
|
|
void LoadCommonResources();
|
2016-01-08 04:04:23 +00:00
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
class MainDelegate : public content::ContentMainDelegate {
|
2013-11-17 23:57:54 +00:00
|
|
|
public:
|
2013-03-13 19:12:05 +00:00
|
|
|
MainDelegate();
|
2018-04-17 23:03:51 +00:00
|
|
|
~MainDelegate() override;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2013-11-17 23:57:54 +00:00
|
|
|
protected:
|
|
|
|
// Subclasses can override this to provide their own ContentClient
|
|
|
|
// implementation.
|
2016-05-23 01:59:07 +00:00
|
|
|
virtual std::unique_ptr<ContentClient> CreateContentClient();
|
2013-04-24 22:30:47 +00:00
|
|
|
|
2013-12-03 22:12:21 +00:00
|
|
|
// Subclasses can override this to provide their own BrowserClient
|
|
|
|
// implementation.
|
2016-05-23 01:59:07 +00:00
|
|
|
virtual std::unique_ptr<BrowserClient> CreateBrowserClient();
|
2013-12-03 22:12:21 +00:00
|
|
|
|
2014-07-09 09:07:00 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Subclasses can override this to custom the paths of child process and
|
|
|
|
// framework bundle.
|
|
|
|
virtual void OverrideChildProcessPath();
|
|
|
|
virtual void OverrideFrameworkBundlePath();
|
|
|
|
#endif
|
|
|
|
|
2015-06-05 04:07:27 +00:00
|
|
|
bool BasicStartupComplete(int* exit_code) override;
|
|
|
|
void PreSandboxStartup() override;
|
2013-03-28 16:34:49 +00:00
|
|
|
|
2013-11-17 23:57:54 +00:00
|
|
|
private:
|
2015-06-05 04:07:27 +00:00
|
|
|
content::ContentBrowserClient* CreateContentBrowserClient() override;
|
2013-12-03 22:12:21 +00:00
|
|
|
|
2016-05-23 01:59:07 +00:00
|
|
|
std::unique_ptr<ContentClient> content_client_;
|
|
|
|
std::unique_ptr<BrowserClient> browser_client_;
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(MainDelegate);
|
|
|
|
};
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|
2017-05-18 22:05:25 +00:00
|
|
|
|
|
|
|
#endif // BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
|