Index: chrome/browser/sessions/session_service_factory.cc |
diff --git a/chrome/browser/sessions/session_service_factory.cc b/chrome/browser/sessions/session_service_factory.cc |
index 9fdef7b52792267aff5792721900a4ed0c4aafe8..99a7e8b7f40ea0a03d993b045405b50515078663 100644 |
--- a/chrome/browser/sessions/session_service_factory.cc |
+++ b/chrome/browser/sessions/session_service_factory.cc |
@@ -11,8 +11,8 @@ |
// static |
SessionService* SessionServiceFactory::GetForProfile(Profile* profile) { |
-#if defined(OS_ANDROID) || defined(USE_ATHENA) |
- // For Android and Athena we do not store sessions in the SessionService. |
+#if defined(OS_ANDROID) |
+ // For Android we do not store sessions in the SessionService. |
return NULL; |
#else |
return static_cast<SessionService*>( |
@@ -23,8 +23,8 @@ SessionService* SessionServiceFactory::GetForProfile(Profile* profile) { |
// static |
SessionService* SessionServiceFactory::GetForProfileIfExisting( |
Profile* profile) { |
-#if defined(OS_ANDROID) || defined(USE_ATHENA) |
- // For Android and Athena we do not store sessions in the SessionService. |
+#if defined(OS_ANDROID) |
+ // For Android we do not store sessions in the SessionService. |
return NULL; |
#else |
return static_cast<SessionService*>( |