2013-03-13 15:12:05 -04: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 15:42:16 -04:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2017-05-18 16:04:05 -07:00
|
|
|
#include <memory>
|
|
|
|
|
2013-03-13 15:12:05 -04:00
|
|
|
#include "base/compiler_specific.h"
|
2017-05-18 14:30:32 -07:00
|
|
|
#include "base/macros.h"
|
2017-08-03 15:50:56 -07:00
|
|
|
#include "base/path_service.h"
|
|
|
|
#include "brightray/browser/brightray_paths.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
#include "content/public/browser/browser_main_parts.h"
|
2017-07-03 09:23:47 -07:00
|
|
|
#include "ui/views/layout/layout_provider.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2014-07-03 08:44:58 +00:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
2014-07-04 21:41:22 +08:00
|
|
|
namespace brightray {
|
|
|
|
class ViewsDelegate;
|
|
|
|
}
|
2014-07-09 20:05:02 +08:00
|
|
|
#endif
|
2014-07-04 21:41:22 +08:00
|
|
|
|
2017-04-16 17:27:36 +03:00
|
|
|
#if defined(USE_AURA)
|
2014-07-03 08:44:58 +00:00
|
|
|
namespace wm {
|
|
|
|
class WMState;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-13 15:12:05 -04:00
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class BrowserMainParts : public content::BrowserMainParts {
|
2013-11-17 18:17:23 -05:00
|
|
|
public:
|
2013-03-13 15:12:05 -04:00
|
|
|
BrowserMainParts();
|
|
|
|
~BrowserMainParts();
|
|
|
|
|
2013-11-17 18:17:23 -05:00
|
|
|
protected:
|
2014-07-03 09:18:24 +00:00
|
|
|
// content::BrowserMainParts:
|
2015-06-05 12:07:27 +08:00
|
|
|
void PreEarlyInitialization() override;
|
|
|
|
void ToolkitInitialized() override;
|
|
|
|
void PreMainMessageLoopStart() override;
|
|
|
|
void PreMainMessageLoopRun() override;
|
2015-10-04 15:40:51 +08:00
|
|
|
void PostMainMessageLoopStart() override;
|
2015-06-05 12:07:27 +08:00
|
|
|
void PostMainMessageLoopRun() override;
|
|
|
|
int PreCreateThreads() override;
|
2016-05-31 12:36:51 +05:30
|
|
|
void PostDestroyThreads() override;
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2013-11-17 18:17:23 -05:00
|
|
|
private:
|
2014-07-03 08:12:12 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
void InitializeMainNib();
|
2017-09-29 09:32:30 -04:00
|
|
|
void OverrideAppLogsPath();
|
2014-07-03 08:12:12 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-03 08:44:58 +00:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
2016-05-23 10:59:07 +09:00
|
|
|
std::unique_ptr<ViewsDelegate> views_delegate_;
|
2014-07-09 20:05:02 +08:00
|
|
|
#endif
|
|
|
|
|
2017-04-16 17:27:36 +03:00
|
|
|
#if defined(USE_AURA)
|
2016-05-23 10:59:07 +09:00
|
|
|
std::unique_ptr<wm::WMState> wm_state_;
|
2014-07-03 08:44:58 +00:00
|
|
|
#endif
|
|
|
|
|
2017-07-03 09:23:47 -07:00
|
|
|
std::unique_ptr<views::LayoutProvider> layout_provider_;
|
|
|
|
|
2013-03-13 15:12:05 -04:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(BrowserMainParts);
|
|
|
|
};
|
|
|
|
|
2013-11-17 18:17:23 -05:00
|
|
|
} // namespace brightray
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2017-05-18 15:05:25 -07:00
|
|
|
#endif // BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_
|