Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(867)

Unified Diff: chrome/browser/extensions/requirements_checker.cc

Issue 10982037: Revert 158217 - Allow extensions which can run without NPAPI to run under Windows 8 Metro. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/plugin_apitest.cc ('k') | chrome/common/extensions/api/extension_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/requirements_checker.cc
===================================================================
--- chrome/browser/extensions/requirements_checker.cc (revision 158694)
+++ chrome/browser/extensions/requirements_checker.cc (working copy)
@@ -15,10 +15,6 @@
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
-#if defined(OS_WIN)
-#include "base/win/metro.h"
-#endif // defined(OS_WIN)
-
namespace extensions {
RequirementsChecker::RequirementsChecker()
@@ -40,12 +36,6 @@
errors_.push_back(
l10n_util::GetStringUTF8(IDS_EXTENSION_NPAPI_NOT_SUPPORTED));
#endif // defined(OS_CHROMEOS)
-#if defined(OS_WIN)
- if (base::win::IsMetroProcess()) {
- errors_.push_back(
- l10n_util::GetStringUTF8(IDS_EXTENSION_NPAPI_NOT_SUPPORTED));
- }
-#endif // defined(OS_WIN)
}
if (requirements.webgl) {
« no previous file with comments | « chrome/browser/extensions/plugin_apitest.cc ('k') | chrome/common/extensions/api/extension_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698