Commit 926cbd97 authored by Sky Malice's avatar Sky Malice Committed by Commit Bot

Remove NOTIMPLEMENTED from PrefetchGCMAppHandler.

Bug: 1020341
Change-Id: I90fd34199754b53585014118b6fefece37e3ccf4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1894395Reviewed-by: default avatarDan H <harringtond@chromium.org>
Commit-Queue: Sky Malice <skym@chromium.org>
Cr-Commit-Position: refs/heads/master@{#711690}
parent 7cc7a120
...@@ -21,13 +21,9 @@ void PrefetchGCMAppHandler::SetService(PrefetchService* service) { ...@@ -21,13 +21,9 @@ void PrefetchGCMAppHandler::SetService(PrefetchService* service) {
prefetch_service_ = service; prefetch_service_ = service;
} }
void PrefetchGCMAppHandler::ShutdownHandler() { void PrefetchGCMAppHandler::ShutdownHandler() {}
NOTIMPLEMENTED();
}
void PrefetchGCMAppHandler::OnStoreReset() { void PrefetchGCMAppHandler::OnStoreReset() {}
NOTIMPLEMENTED();
}
void PrefetchGCMAppHandler::OnMessage(const std::string& app_id, void PrefetchGCMAppHandler::OnMessage(const std::string& app_id,
const gcm::IncomingMessage& message) { const gcm::IncomingMessage& message) {
...@@ -48,20 +44,14 @@ void PrefetchGCMAppHandler::OnMessage(const std::string& app_id, ...@@ -48,20 +44,14 @@ void PrefetchGCMAppHandler::OnMessage(const std::string& app_id,
"; pageBundle data: " + pageBundle); "; pageBundle data: " + pageBundle);
} }
void PrefetchGCMAppHandler::OnMessagesDeleted(const std::string& app_id) { void PrefetchGCMAppHandler::OnMessagesDeleted(const std::string& app_id) {}
NOTIMPLEMENTED();
}
void PrefetchGCMAppHandler::OnSendError( void PrefetchGCMAppHandler::OnSendError(
const std::string& app_id, const std::string& app_id,
const gcm::GCMClient::SendErrorDetails& send_error_details) { const gcm::GCMClient::SendErrorDetails& send_error_details) {}
NOTIMPLEMENTED();
}
void PrefetchGCMAppHandler::OnSendAcknowledged(const std::string& app_id, void PrefetchGCMAppHandler::OnSendAcknowledged(const std::string& app_id,
const std::string& message_id) { const std::string& message_id) {}
NOTIMPLEMENTED();
}
bool PrefetchGCMAppHandler::CanHandle(const std::string& app_id) const { bool PrefetchGCMAppHandler::CanHandle(const std::string& app_id) const {
return app_id == GetAppId(); return app_id == GetAppId();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment