Index: chrome/browser/profiles/gaia_info_update_service.cc |
diff --git a/chrome/browser/profiles/gaia_info_update_service.cc b/chrome/browser/profiles/gaia_info_update_service.cc |
index 0f58dc0d4b557cc0018d9f40d7aefb49d96ea4e3..d1103d07acb30ad0449bd84ad8218b115e79b3c3 100644 |
--- a/chrome/browser/profiles/gaia_info_update_service.cc |
+++ b/chrome/browser/profiles/gaia_info_update_service.cc |
@@ -4,7 +4,6 @@ |
#include "chrome/browser/profiles/gaia_info_update_service.h" |
-#include "base/command_line.h" |
#include "chrome/browser/browser_process.h" |
#include "chrome/browser/prefs/pref_service.h" |
#include "chrome/browser/profiles/profile.h" |
@@ -12,7 +11,6 @@ |
#include "chrome/browser/profiles/profile_manager.h" |
#include "chrome/browser/sync/profile_sync_service.h" |
#include "chrome/common/chrome_notification_types.h" |
-#include "chrome/common/chrome_switches.h" |
#include "chrome/common/pref_names.h" |
#include "content/public/browser/notification_details.h" |
#include "third_party/skia/include/core/SkBitmap.h" |
@@ -65,12 +63,6 @@ bool GAIAInfoUpdateService::ShouldUseGAIAProfileInfo(Profile* profile) { |
if (!profile->GetOriginalProfile()->IsSyncAccessible()) |
return false; |
- // TODO(sail): For now put this feature behind a flag. |
- if (!CommandLine::ForCurrentProcess()->HasSwitch( |
- switches::kGaiaProfileInfo)) { |
- return false; |
- } |
- |
return true; |
} |