Skip to content

Commit

Permalink
Whitelist various url schemes via LSApplicationQueriesSchemes plist key.
Browse files Browse the repository at this point in the history
iOS9 shows a warning when test attempts to call -canOpenURL with a scheme
not in LSApplicationQueriesSchemes list. This slightly affects
performance of integration tests causing them to be more flaky.

BUG=524035,525105

Review URL: https://codereview.chromium.org/1302223008

Cr-Commit-Position: refs/heads/master@{#346161}
  • Loading branch information
eugenebut authored and Commit bot committed Aug 28, 2015
1 parent 6963c39 commit a04a1a9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions testing/gtest_ios/unittest-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,37 @@
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>chromium</string>
<string>chromiums</string>
<string>comgooglemaps-v2</string>
<string>comgooglemaps-x-callback</string>
<string>comgooglemaps</string>
<string>googleapp</string>
<string>googlechrome</string>
<string>googlechromes</string>
<string>googledocs-v2</string>
<string>googledocs-x-callback</string>
<string>googledocs</string>
<string>googledrive-v1</string>
<string>googledrive-x-callback</string>
<string>googledrive</string>
<string>googlegmail-x-callback</string>
<string>googlegmail</string>
<string>googlesheets-v2</string>
<string>googlesheets-x-callback</string>
<string>googlesheets</string>
<string>googleslides-v2</string>
<string>googleslides-x-callback</string>
<string>googleslides</string>
<string>gplus-v2</string>
<string>gplus-v3</string>
<string>gplus</string>
<string>vnd.google.calendar</string>
<string>vnd.youtube</string>
<string>youtube</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down

0 comments on commit a04a1a9

Please sign in to comment.