| Index: chrome/browser/services/gcm/gcm_profile_service.cc
|
| diff --git a/chrome/browser/services/gcm/gcm_profile_service.cc b/chrome/browser/services/gcm/gcm_profile_service.cc
|
| index 3e549a75d447f53b07669601e2cbc5037c61dbd1..31b2c0928f754f3e6b3c873b3037e85b171663c4 100644
|
| --- a/chrome/browser/services/gcm/gcm_profile_service.cc
|
| +++ b/chrome/browser/services/gcm/gcm_profile_service.cc
|
| @@ -103,8 +103,7 @@ void GCMProfileService::RegisterProfilePrefs(
|
|
|
| #if defined(OS_ANDROID)
|
| GCMProfileService::GCMProfileService(Profile* profile)
|
| - : profile_(profile),
|
| - push_messaging_service_(this, profile) {
|
| + : profile_(profile), push_messaging_service_(this, profile) {
|
| DCHECK(!profile->IsOffTheRecord());
|
|
|
| driver_.reset(new GCMDriverAndroid);
|
| @@ -113,8 +112,7 @@ GCMProfileService::GCMProfileService(Profile* profile)
|
| GCMProfileService::GCMProfileService(
|
| Profile* profile,
|
| scoped_ptr<GCMClientFactory> gcm_client_factory)
|
| - : profile_(profile),
|
| - push_messaging_service_(this, profile) {
|
| + : profile_(profile), push_messaging_service_(this, profile) {
|
| DCHECK(!profile->IsOffTheRecord());
|
|
|
| driver_ = CreateGCMDriverDesktop(
|
| @@ -127,8 +125,7 @@ GCMProfileService::GCMProfileService(
|
| #endif // defined(OS_ANDROID)
|
|
|
| GCMProfileService::GCMProfileService()
|
| - : profile_(NULL),
|
| - push_messaging_service_(this, NULL) {
|
| + : profile_(NULL), push_messaging_service_(this, NULL) {
|
| }
|
|
|
| GCMProfileService::~GCMProfileService() {
|
|
|