Index: chrome/browser/extensions/launch_util.cc |
diff --git a/chrome/browser/extensions/launch_util.cc b/chrome/browser/extensions/launch_util.cc |
index 67eb80839d5fff7f7197839c1aae092593ca0fe7..98a47e7006e5560a0f0fcb2a41c47b4aff9b1d2d 100644 |
--- a/chrome/browser/extensions/launch_util.cc |
+++ b/chrome/browser/extensions/launch_util.cc |
@@ -56,14 +56,6 @@ LaunchType GetLaunchType(const ExtensionPrefs* prefs, |
if (value >= LAUNCH_TYPE_FIRST && value < NUM_LAUNCH_TYPES) |
result = static_cast<LaunchType>(value); |
-#if defined(OS_MACOSX) |
- // App windows are not yet supported on mac. Pref sync could make |
- // the launch type LAUNCH_TYPE_WINDOW, even if there is no UI to set it |
- // on mac. |
- if (!extension->is_platform_app() && result == LAUNCH_TYPE_WINDOW) |
- result = LAUNCH_TYPE_REGULAR; |
-#endif |
- |
return result; |
} |