Index: chrome/browser/services/gcm/instance_id/instance_id_profile_service.cc |
diff --git a/chrome/browser/services/gcm/instance_id/instance_id_profile_service.cc b/chrome/browser/services/gcm/instance_id/instance_id_profile_service.cc |
index dc80f364d99561afc9a4df06b7da5ba6e621ccf3..b8d1f3c70d32da04c5ffb7f615b3f568fdead120 100644 |
--- a/chrome/browser/services/gcm/instance_id/instance_id_profile_service.cc |
+++ b/chrome/browser/services/gcm/instance_id/instance_id_profile_service.cc |
@@ -8,7 +8,6 @@ |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/services/gcm/gcm_profile_service.h" |
#include "chrome/browser/services/gcm/gcm_profile_service_factory.h" |
-#include "chrome/common/chrome_version_info.h" |
#include "components/gcm_driver/instance_id/instance_id_driver.h" |
namespace instance_id { |
@@ -19,13 +18,6 @@ bool InstanceIDProfileService::IsInstanceIDEnabled(Profile* profile) { |
if (!gcm::GCMProfileService::IsGCMEnabled(profile)) |
return false; |
- // Enabled only for trunk/canary/dev builds. |
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); |
- if (channel == chrome::VersionInfo::CHANNEL_BETA || |
- channel == chrome::VersionInfo::CHANNEL_STABLE) { |
- return false; |
- } |
- |
return InstanceIDDriver::IsInstanceIDEnabled(); |
} |