electron/brightray/browser/browser_client.h

63 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 "content/public/browser/content_browser_client.h"
namespace brightray {
class BrowserContext;
class BrowserMainParts;
class NotificationPresenter;
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();
BrowserContext* browser_context();
BrowserMainParts* browser_main_parts() { return browser_main_parts_; }
NotificationPresenter* notification_presenter();
2013-03-13 19:12:05 +00:00
2013-11-17 23:13:10 +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&);
// Subclasses that override this (e.g., to provide their own protocol
// handlers) should call this implementation after doing their own work.
virtual net::URLRequestContextGetter* CreateRequestContext(
content::BrowserContext* browser_context,
content::ProtocolHandlerMap* protocol_handlers,
2014-10-23 03:10:39 +00:00
content::URLRequestInterceptorScopedVector protocol_interceptors) override;
2013-11-17 23:13:10 +00:00
private:
virtual content::BrowserMainParts* CreateBrowserMainParts(
2014-10-23 03:10:39 +00:00
const content::MainFunctionParams&) override;
virtual void ShowDesktopNotification(
2014-10-11 08:38:27 +00:00
const content::ShowDesktopNotificationHostMsgParams& params,
content::RenderFrameHost* render_frame_host,
2014-10-11 08:38:27 +00:00
scoped_ptr<content::DesktopNotificationDelegate> delegate,
base::Closure* cancel_callback) override;
2014-10-23 03:10:39 +00:00
virtual content::MediaObserver* GetMediaObserver() override;
virtual void GetAdditionalAllowedSchemesForFileSystem(
2014-10-23 03:10:39 +00:00
std::vector<std::string>* additional_schemes) override;
virtual base::FilePath GetDefaultDownloadDirectory() override;
2013-03-13 19:12:05 +00:00
BrowserMainParts* browser_main_parts_;
scoped_ptr<NotificationPresenter> notification_presenter_;
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