Add notifications to UKM.xml.

https://chromium-review.googlesource.com/c/chromium/src/+/1071649
This commit is contained in:
deepak1556 2018-10-25 22:49:44 +05:30
parent f464b8c4c5
commit 6743b83786
2 changed files with 7 additions and 0 deletions

View file

@ -130,4 +130,8 @@ int64_t PlatformNotificationService::ReadNextPersistentNotificationId(
return 0; return 0;
} }
void PlatformNotificationService::RecordNotificationUkmEvent(
content::BrowserContext* browser_context,
const content::NotificationDatabaseData& data) {}
} // namespace atom } // namespace atom

View file

@ -46,6 +46,9 @@ class PlatformNotificationService
const DisplayedNotificationsCallback& callback) override; const DisplayedNotificationsCallback& callback) override;
int64_t ReadNextPersistentNotificationId( int64_t ReadNextPersistentNotificationId(
content::BrowserContext* browser_context) override; content::BrowserContext* browser_context) override;
void RecordNotificationUkmEvent(
content::BrowserContext* browser_context,
const content::NotificationDatabaseData& data) override;
private: private:
AtomBrowserClient* browser_client_; AtomBrowserClient* browser_client_;