Disable AppApiTest.AppProcess which times out a lot on windows.
BUG=172750
Test=Waterfall is closed less often
TBR=zea
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/12069005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179228 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/app_process_apitest.cc b/chrome/browser/extensions/app_process_apitest.cc
index c8c09b7..b059301 100644
--- a/chrome/browser/extensions/app_process_apitest.cc
+++ b/chrome/browser/extensions/app_process_apitest.cc
@@ -133,7 +133,13 @@
// Tests that hosted apps with the background permission get a process-per-app
// model, since all pages need to be able to script the background page.
-IN_PROC_BROWSER_TEST_F(AppApiTest, AppProcess) {
+// http://crbug.com/172750
+#if defined(OS_WIN)
+#define MAYBE_AppProcess DISABLED_AppProcess
+#else
+#define MAYBE_AppProcess AppProcess
+#endif
+IN_PROC_BROWSER_TEST_F(AppApiTest, MAYBE_AppProcess) {
LOG(INFO) << "Start of test.";
extensions::ProcessMap* process_map = extensions::ExtensionSystem::Get(