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

Unified Diff: chrome/browser/invalidation/gcm_invalidation_bridge.h

Issue 225403021: Extract Profile-independent GCMService from GCMProfileService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Restore real IO thread in unit tests. Remove sources of flakiness by waiting instead of pumping whe… Created 6 years, 8 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/invalidation/gcm_invalidation_bridge.h
diff --git a/chrome/browser/invalidation/gcm_invalidation_bridge.h b/chrome/browser/invalidation/gcm_invalidation_bridge.h
index c72c6a11b779ad943940263b896e2407d69dfed7..a9d781e478b3dbc5e8919e8ddf5a1a8593a138f9 100644
--- a/chrome/browser/invalidation/gcm_invalidation_bridge.h
+++ b/chrome/browser/invalidation/gcm_invalidation_bridge.h
@@ -21,7 +21,7 @@ class SingleThreadTaskRunner;
} // namespace base
namespace gcm {
-class GCMProfileService;
+class GCMService;
} // namespace gcm
namespace invalidation {
@@ -37,7 +37,7 @@ class GCMInvalidationBridge : public gcm::GCMAppHandler,
public:
class Core;
- GCMInvalidationBridge(gcm::GCMProfileService* gcm_profile_service,
+ GCMInvalidationBridge(gcm::GCMService* gcm_service,
IdentityProvider* identity_provider);
virtual ~GCMInvalidationBridge();
@@ -80,7 +80,7 @@ class GCMInvalidationBridge : public gcm::GCMAppHandler,
gcm::GCMClient::Result result);
private:
- gcm::GCMProfileService* const gcm_profile_service_;
+ gcm::GCMService* const gcm_service_;
IdentityProvider* const identity_provider_;
base::WeakPtr<Core> core_;

Powered by Google App Engine
This is Rietveld 408576698