electron/brightray/browser/browser_main_parts.h

69 lines
1.6 KiB
C
Raw Normal View History

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.
#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"
#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
#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
#if defined(USE_AURA)
namespace wm {
class WMState;
}
#endif
2013-03-13 15:12:05 -04:00
namespace brightray {
class BrowserMainParts : public content::BrowserMainParts {
public:
2013-03-13 15:12:05 -04:00
BrowserMainParts();
~BrowserMainParts();
protected:
// 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
private:
#if defined(OS_MACOSX)
void InitializeMainNib();
void OverrideAppLogsPath();
#endif
#if defined(TOOLKIT_VIEWS)
std::unique_ptr<ViewsDelegate> views_delegate_;
2014-07-09 20:05:02 +08:00
#endif
#if defined(USE_AURA)
std::unique_ptr<wm::WMState> wm_state_;
#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);
};
} // namespace brightray
2013-03-13 15:12:05 -04:00
#endif // BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_