| Index: chrome/browser/extensions/launch_util.cc
|
| diff --git a/chrome/browser/extensions/launch_util.cc b/chrome/browser/extensions/launch_util.cc
|
| index d24f40e71a6cc0947cd672b72aed7d62617474d0..765e5fc008e7aa4e828b3d749e6ef5c7ab8bf10b 100644
|
| --- a/chrome/browser/extensions/launch_util.cc
|
| +++ b/chrome/browser/extensions/launch_util.cc
|
| @@ -17,10 +17,6 @@
|
| #include "extensions/browser/pref_names.h"
|
| #include "extensions/common/extension.h"
|
|
|
| -#if defined(OS_WIN)
|
| -#include "win8/util/win8_util.h"
|
| -#endif
|
| -
|
| #if defined(USE_ASH)
|
| #include "ash/shell.h"
|
| #endif
|
| @@ -69,12 +65,6 @@ LaunchType GetLaunchType(const ExtensionPrefs* prefs,
|
| result = LAUNCH_TYPE_REGULAR;
|
| #endif
|
|
|
| -#if defined(OS_WIN)
|
| - // We don't support app windows in Windows 8 single window Metro mode.
|
| - if (win8::IsSingleWindowMetroMode() && result == LAUNCH_TYPE_WINDOW)
|
| - result = LAUNCH_TYPE_REGULAR;
|
| -#endif // OS_WIN
|
| -
|
| return result;
|
| }
|
|
|
|
|