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
|
|
|
|
|
|
|
#include "content/public/browser/content_browser_client.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class BrowserContext;
|
|
|
|
class BrowserMainParts;
|
2013-03-28 21:49:29 +00:00
|
|
|
class NotificationPresenter;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
class BrowserClient : public content::ContentBrowserClient {
|
|
|
|
public:
|
|
|
|
BrowserClient();
|
|
|
|
~BrowserClient();
|
|
|
|
|
|
|
|
BrowserContext* browser_context();
|
2013-03-27 12:54:19 +00:00
|
|
|
BrowserMainParts* browser_main_parts() { return browser_main_parts_; }
|
2013-03-28 21:49:29 +00:00
|
|
|
NotificationPresenter* notification_presenter();
|
2013-03-13 19:12:05 +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&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual content::BrowserMainParts* CreateBrowserMainParts(const content::MainFunctionParams&) OVERRIDE;
|
|
|
|
virtual net::URLRequestContextGetter* CreateRequestContext(content::BrowserContext*, content::ProtocolHandlerMap*) OVERRIDE;
|
2013-03-28 21:17:46 +00:00
|
|
|
virtual void ShowDesktopNotification(
|
|
|
|
const content::ShowDesktopNotificationHostMsgParams&,
|
|
|
|
int render_process_id,
|
|
|
|
int render_view_id,
|
|
|
|
bool worker) OVERRIDE;
|
2013-03-29 13:36:07 +00:00
|
|
|
virtual void CancelDesktopNotification(
|
|
|
|
int render_process_id,
|
|
|
|
int render_view_id,
|
|
|
|
int notification_id) OVERRIDE;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2013-03-27 12:54:19 +00:00
|
|
|
BrowserMainParts* browser_main_parts_;
|
2013-03-28 21:49:29 +00:00
|
|
|
scoped_ptr<NotificationPresenter> notification_presenter_;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:42:16 +00:00
|
|
|
#endif
|