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;
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
BrowserContext* browser_context();
|
2013-03-27 12:54:19 +00:00
|
|
|
BrowserMainParts* browser_main_parts() { return browser_main_parts_; }
|
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.
|
2015-01-02 23:18:24 +00:00
|
|
|
net::URLRequestContextGetter* CreateRequestContext(
|
2014-06-26 20:27:22 +00:00
|
|
|
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:
|
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;
|
2015-01-02 23:18:24 +00:00
|
|
|
base::FilePath GetDefaultDownloadDirectory() override;
|
|
|
|
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2015-04-21 13:42:49 +00:00
|
|
|
#if defined(OS_POSIX) && !defined(OS_MACOSX)
|
|
|
|
void GetAdditionalMappedFilesForChildProcess(
|
|
|
|
const base::CommandLine& command_line,
|
|
|
|
int child_process_id,
|
|
|
|
content::FileDescriptorInfo* mappings) override;
|
|
|
|
#endif
|
|
|
|
|
2013-03-27 12:54:19 +00:00
|
|
|
BrowserMainParts* browser_main_parts_;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2015-04-21 13:42:49 +00:00
|
|
|
#if defined(OS_POSIX) && !defined(OS_MACOSX)
|
|
|
|
base::ScopedFD v8_natives_fd_;
|
|
|
|
base::ScopedFD v8_snapshot_fd_;
|
|
|
|
#endif // OS_POSIX && !OS_MACOSX
|
|
|
|
|
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
|