Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_CHROME_BROWSER_NATIVE_APP_LAUNCHER_IOS_APPSTORE_IDS_H_ | |
| 6 #define IOS_CHROME_BROWSER_NATIVE_APP_LAUNCHER_IOS_APPSTORE_IDS_H_ | |
| 7 | |
| 8 namespace ios_internal { | |
|
rohitrao (ping after 24h)
2016/11/17 03:15:22
Remove the namespace. We're intentionally trying
sczs1
2016/11/18 23:42:48
Done.
| |
| 9 | |
| 10 // Constants with the iOS AppStore IDs for Google native iOS apps recognized | |
|
rohitrao (ping after 24h)
2016/11/17 03:15:22
// Appstore IDs.
Let's drop the google-specific l
sczs1
2016/11/18 23:42:48
Done.
| |
| 11 // by Chrome. | |
| 12 extern const char kIOSAppStoreGmail[]; | |
| 13 extern const char kIOSAppStoreGoogleDocs[]; | |
| 14 extern const char kIOSAppStoreGoogleDrive[]; | |
| 15 extern const char kIOSAppStoreGoogleMaps[]; | |
| 16 extern const char kIOSAppStoreGooglePhotos[]; | |
| 17 extern const char kIOSAppStoreGooglePlayMusic[]; | |
| 18 extern const char kIOSAppStoreGooglePlus[]; | |
| 19 extern const char kIOSAppStoreGoogleSheets[]; | |
| 20 extern const char kIOSAppStoreGoogleSlides[]; | |
| 21 extern const char kIOSAppStoreSpaces[]; | |
| 22 extern const char kIOSAppStoreYouTube[]; | |
| 23 | |
| 24 // Non-Google iOS native apps that we recognize. Recognizes TestFlight so | |
|
rohitrao (ping after 24h)
2016/11/17 03:15:22
Let's drop this comment entirely and merge this co
sczs1
2016/11/18 23:42:48
Done.
| |
| 25 // users using Chrome to read email can click on a TestFlight invitation link | |
| 26 // and launch TestFlight app. Chrome shouldn't need to do this, but UIWebView | |
| 27 // treats beta.itunes.apple.com in some special way. | |
| 28 extern const char kIOSAppStoreTestFlight[]; | |
| 29 | |
| 30 } // namespace ios_internal | |
| 31 | |
| 32 #endif // IOS_CHROME_BROWSER_NATIVE_APP_LAUNCHER_IOS_APPSTORE_IDS_H_ | |
| OLD | NEW |