d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
// 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_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "brightray/browser/net_log.h"
|
|
#include "content/public/browser/content_browser_client.h"
|
|
|
|
namespace brightray {
|
|
|
|
class BrowserMainParts;
|
|
class NotificationPresenter;
|
|
class PlatformNotificationService;
|
|
|
|
class BrowserClient : public content::ContentBrowserClient {
|
|
public:
|
|
static BrowserClient* Get();
|
|
static void SetApplicationLocale(const std::string& locale);
|
|
|
|
BrowserClient();
|
|
~BrowserClient() override;
|
|
|
|
BrowserMainParts* browser_main_parts() { return browser_main_parts_; }
|
|
|
|
NotificationPresenter* GetNotificationPresenter();
|
|
|
|
// Subclasses should override this to enable or disable WebNotification.
|
|
virtual void WebNotificationAllowed(
|
|
int render_process_id,
|
|
const base::Callback<void(bool, bool)>& callback);
|
|
|
|
// Subclasses that override this (e.g., to provide their own protocol
|
|
// handlers) should call this implementation after doing their own work.
|
|
content::BrowserMainParts* CreateBrowserMainParts(
|
|
const content::MainFunctionParams&) override;
|
|
content::MediaObserver* GetMediaObserver() override;
|
|
content::PlatformNotificationService* GetPlatformNotificationService()
|
|
override;
|
|
void GetAdditionalAllowedSchemesForFileSystem(
|
|
std::vector<std::string>* additional_schemes) override;
|
|
void GetAdditionalWebUISchemes(
|
|
std::vector<std::string>* additional_schemes) override;
|
|
NetLog* GetNetLog() override;
|
|
base::FilePath GetDefaultDownloadDirectory() override;
|
|
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
|
|
std::string GetApplicationLocale() override;
|
|
|
|
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:
|
|
BrowserMainParts* browser_main_parts_;
|
|
NetLog net_log_;
|
|
|
|
std::unique_ptr<PlatformNotificationService> notification_service_;
|
|
std::unique_ptr<NotificationPresenter> notification_presenter_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
|
|
};
|
|
|
|
} // namespace brightray
|
|
|
|
#endif // BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
|