mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Fix compilation error
This commit is contained in:
@@ -47,7 +47,7 @@ void OnWebNotificationAllowed(
|
||||
PlatformNotificationService::PlatformNotificationService(
|
||||
BrowserClient* browser_client)
|
||||
: browser_client_(browser_client),
|
||||
render_process_id_(0) {
|
||||
render_process_id_(-1) {
|
||||
}
|
||||
|
||||
PlatformNotificationService::~PlatformNotificationService() {}
|
||||
|
||||
@@ -48,8 +48,8 @@ class PlatformNotificationService
|
||||
std::set<std::string>* displayed_notifications) override;
|
||||
|
||||
private:
|
||||
int render_process_id_;
|
||||
BrowserClient* browser_client_;
|
||||
int render_process_id_;
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(PlatformNotificationService);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user