electron/brightray/browser/browser_client.h

68 lines
2.2 KiB
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.
#ifndef BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
#define BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
2013-03-13 19:12:05 +00:00
#include "browser/net_log.h"
2013-03-13 19:12:05 +00:00
#include "content/public/browser/content_browser_client.h"
namespace brightray {
class BrowserMainParts;
2015-12-24 14:20:47 +00:00
class NotificationPresenter;
class PlatformNotificationService;
2013-03-13 19:12:05 +00:00
class BrowserClient : public content::ContentBrowserClient {
2013-11-17 23:13:10 +00:00
public:
static BrowserClient* Get();
2013-03-13 19:12:05 +00:00
BrowserClient();
~BrowserClient();
BrowserMainParts* browser_main_parts() { return browser_main_parts_; }
2013-03-13 19:12:05 +00:00
2015-12-24 14:20:47 +00:00
NotificationPresenter* GetNotificationPresenter();
// Subclasses should override this to enable or disable WebNotification.
virtual void WebNotificationAllowed(
int render_process_id,
const base::Callback<void(bool, bool)>& callback) {
callback.Run(false, true);
}
2013-11-17 23:13:10 +00:00
// Subclasses that override this (e.g., to provide their own protocol
// handlers) should call this implementation after doing their own work.
content::BrowserMainParts* CreateBrowserMainParts(
2014-10-23 03:10:39 +00:00
const content::MainFunctionParams&) override;
content::MediaObserver* GetMediaObserver() override;
content::PlatformNotificationService* GetPlatformNotificationService()
override;
void GetAdditionalAllowedSchemesForFileSystem(
2014-10-23 03:10:39 +00:00
std::vector<std::string>* additional_schemes) override;
net::NetLog* GetNetLog() override;
base::FilePath GetDefaultDownloadDirectory() override;
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
protected:
// Subclasses should override this to provide their own BrowserMainParts
// implementation. The lifetime of the returned instance is managed by the
// caller.
virtual BrowserMainParts* OverrideCreateBrowserMainParts(
const content::MainFunctionParams&);
2015-08-11 10:29:55 +00:00
2015-10-16 23:48:07 +00:00
private:
BrowserMainParts* browser_main_parts_;
NetLog net_log_;
std::unique_ptr<PlatformNotificationService> notification_service_;
std::unique_ptr<NotificationPresenter> notification_presenter_;
2015-12-24 14:20:47 +00:00
2013-03-13 19:12:05 +00:00
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
};
2013-11-17 23:13:10 +00:00
} // namespace brightray
2013-03-13 19:12:05 +00:00
#endif // BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_