Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Unified Diff: chrome/browser/services/gcm/fake_gcm_profile_service.h

Issue 179043005: [GCM] Remove the requirement for manifest key (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove cert Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/services/gcm/fake_gcm_profile_service.h
diff --git a/chrome/browser/services/gcm/fake_gcm_profile_service.h b/chrome/browser/services/gcm/fake_gcm_profile_service.h
index 1848c0b81beebbf2ade659e692c8d5b997efb464..324a8878b3e9af1ed733354ee434018eec0dd8fa 100644
--- a/chrome/browser/services/gcm/fake_gcm_profile_service.h
+++ b/chrome/browser/services/gcm/fake_gcm_profile_service.h
@@ -26,7 +26,6 @@ class FakeGCMProfileService : public GCMProfileService {
// GCMProfileService overrides.
virtual void Register(const std::string& app_id,
const std::vector<std::string>& sender_ids,
- const std::string& cert,
RegisterCallback callback) OVERRIDE;
virtual void Send(const std::string& app_id,
const std::string& receiver_id,
@@ -35,7 +34,6 @@ class FakeGCMProfileService : public GCMProfileService {
void RegisterFinished(const std::string& app_id,
const std::vector<std::string>& sender_ids,
- const std::string& cert,
RegisterCallback callback);
void SendFinished(const std::string& app_id,
@@ -59,10 +57,6 @@ class FakeGCMProfileService : public GCMProfileService {
return last_registered_sender_ids_;
}
- const std::string& last_registered_cert() const {
- return last_registered_cert_;
- }
-
void set_collect(bool collect) {
collect_ = collect;
}
@@ -73,7 +67,6 @@ class FakeGCMProfileService : public GCMProfileService {
bool collect_;
std::string last_registered_app_id_;
std::vector<std::string> last_registered_sender_ids_;
- std::string last_registered_cert_;
GCMClient::OutgoingMessage last_sent_message_;
std::string last_receiver_id_;

Powered by Google App Engine
This is Rietveld 408576698