CtsVerifier: Add an intent in IntentFiltersTestHelper.

DownloadManager.ACTION_VIEW_DOWNLOADS is added in IntentFiltersTestHelper
to verify it is not forwarded to primary profile.

Bug: 23756373
Change-Id: Ia3e23f9514953779be0fd2e4b661e7a0bed0de09
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/IntentFiltersTestHelper.java b/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/IntentFiltersTestHelper.java
index 579cbcc..e31d01e 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/IntentFiltersTestHelper.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/IntentFiltersTestHelper.java
@@ -18,6 +18,7 @@
 
 import android.app.Activity;
 import android.app.admin.DevicePolicyManager;
+import android.app.DownloadManager;
 import android.content.ComponentName;
 import android.content.Context;
 import android.content.Intent;
@@ -173,7 +174,8 @@
         new Intent(Settings.ACTION_WIFI_SETTINGS),
         new Intent("android.settings.SHOW_INPUT_METHOD_PICKER"),
         new Intent(Intent.ACTION_INSERT).setData(Events.CONTENT_URI),
-        new Intent(AudioEffect.ACTION_DISPLAY_AUDIO_EFFECT_CONTROL_PANEL)
+        new Intent(AudioEffect.ACTION_DISPLAY_AUDIO_EFFECT_CONTROL_PANEL),
+        new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS)
     };
 
     // This flag specifies we are dealing with intents fired from the primary profile.