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_CLIENT_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2017-05-18 15:06:57 -07:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-05-18 15:58:12 -07:00
|
|
|
#include "brightray/browser/net_log.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
#include "content/public/browser/content_browser_client.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class BrowserMainParts;
|
2015-12-24 22:20:47 +08:00
|
|
|
class NotificationPresenter;
|
|
|
|
class PlatformNotificationService;
|
2013-03-13 15:12:05 -04:00
|
|
|
|
|
|
|
class BrowserClient : public content::ContentBrowserClient {
|
2013-11-17 18:13:10 -05:00
|
|
|
public:
|
2013-04-17 23:27:53 -04:00
|
|
|
static BrowserClient* Get();
|
2017-12-16 14:51:29 +05:30
|
|
|
static void SetApplicationLocale(const std::string& locale);
|
2013-04-17 23:27:53 -04:00
|
|
|
|
2013-03-13 15:12:05 -04:00
|
|
|
BrowserClient();
|
2018-04-17 16:03:51 -07:00
|
|
|
~BrowserClient() override;
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2013-03-27 08:54:19 -04:00
|
|
|
BrowserMainParts* browser_main_parts() { return browser_main_parts_; }
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2015-12-24 22:20:47 +08:00
|
|
|
NotificationPresenter* GetNotificationPresenter();
|
|
|
|
|
2016-01-23 19:02:30 +05:30
|
|
|
// Subclasses should override this to enable or disable WebNotification.
|
2016-07-02 16:53:48 +09:00
|
|
|
virtual void WebNotificationAllowed(
|
|
|
|
int render_process_id,
|
2018-04-17 16:47:47 -07:00
|
|
|
const base::Callback<void(bool, bool)>& callback);
|
2016-07-02 13:26:58 +12:00
|
|
|
|
2013-11-17 18:13:10 -05: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 15:18:24 -08:00
|
|
|
content::BrowserMainParts* CreateBrowserMainParts(
|
2014-10-23 11:10:39 +08:00
|
|
|
const content::MainFunctionParams&) override;
|
2015-01-02 15:18:24 -08:00
|
|
|
content::MediaObserver* GetMediaObserver() override;
|
2017-03-23 15:47:30 -07:00
|
|
|
content::PlatformNotificationService* GetPlatformNotificationService()
|
|
|
|
override;
|
2015-01-02 15:18:24 -08:00
|
|
|
void GetAdditionalAllowedSchemesForFileSystem(
|
2014-10-23 11:10:39 +08:00
|
|
|
std::vector<std::string>* additional_schemes) override;
|
2017-11-29 22:30:21 +05:30
|
|
|
void GetAdditionalWebUISchemes(
|
|
|
|
std::vector<std::string>* additional_schemes) override;
|
2018-06-18 18:45:58 -07:00
|
|
|
NetLog* GetNetLog() override;
|
2015-01-02 15:18:24 -08:00
|
|
|
base::FilePath GetDefaultDownloadDirectory() override;
|
|
|
|
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
|
2017-12-16 14:51:29 +05:30
|
|
|
std::string GetApplicationLocale() override;
|
2015-04-21 21:42:49 +08:00
|
|
|
|
2016-05-23 19:02:13 +09: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 18:29:55 +08:00
|
|
|
|
2015-10-16 16:48:07 -07:00
|
|
|
private:
|
2016-05-23 19:02:13 +09:00
|
|
|
BrowserMainParts* browser_main_parts_;
|
|
|
|
NetLog net_log_;
|
|
|
|
|
2016-05-23 10:59:07 +09:00
|
|
|
std::unique_ptr<PlatformNotificationService> notification_service_;
|
|
|
|
std::unique_ptr<NotificationPresenter> notification_presenter_;
|
2015-12-24 22:20:47 +08:00
|
|
|
|
2013-03-13 15:12:05 -04:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
|
|
|
|
};
|
|
|
|
|
2013-11-17 18:13:10 -05:00
|
|
|
} // namespace brightray
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2017-05-18 15:05:25 -07:00
|
|
|
#endif // BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
|