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_BROWSER_BROWSER_CLIENT_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2016-05-23 10:02:13 +00:00
|
|
|
#include "browser/net_log.h"
|
2016-05-23 01:59:07 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "content/public/browser/content_browser_client.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class BrowserContext;
|
|
|
|
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:
|
2013-04-18 03:27:53 +00:00
|
|
|
static BrowserClient* Get();
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
BrowserClient();
|
|
|
|
~BrowserClient();
|
|
|
|
|
2013-03-27 12:54:19 +00:00
|
|
|
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();
|
|
|
|
|
2016-01-23 13:32:30 +00:00
|
|
|
// Subclasses should override this to enable or disable WebNotification.
|
|
|
|
virtual void WebNotificationAllowed(int render_process_id,
|
|
|
|
const base::Callback<void(bool)>& callback) {
|
|
|
|
callback.Run(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.
|
2015-01-02 23:18:24 +00:00
|
|
|
content::BrowserMainParts* CreateBrowserMainParts(
|
2014-10-23 03:10:39 +00:00
|
|
|
const content::MainFunctionParams&) override;
|
2015-01-02 23:18:24 +00:00
|
|
|
content::MediaObserver* GetMediaObserver() override;
|
2015-03-09 02:37:13 +00:00
|
|
|
content::PlatformNotificationService* GetPlatformNotificationService() override;
|
2015-01-02 23:18:24 +00:00
|
|
|
void GetAdditionalAllowedSchemesForFileSystem(
|
2014-10-23 03:10:39 +00:00
|
|
|
std::vector<std::string>* additional_schemes) override;
|
2016-05-23 10:02:13 +00:00
|
|
|
net::NetLog* GetNetLog() override;
|
2015-01-02 23:18:24 +00:00
|
|
|
base::FilePath GetDefaultDownloadDirectory() override;
|
|
|
|
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
|
2015-04-21 13:42:49 +00:00
|
|
|
|
2016-05-23 10:02:13 +00:00
|
|
|
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:
|
2016-05-23 10:02:13 +00:00
|
|
|
BrowserMainParts* browser_main_parts_;
|
|
|
|
NetLog net_log_;
|
|
|
|
|
2016-05-23 01:59:07 +00:00
|
|
|
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
|
|
|
|
2013-03-13 19:42:16 +00:00
|
|
|
#endif
|