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 #include "ios/chrome/browser/native_app_launcher/ios_appstore_ids.h" | |
| 6 | |
| 7 namespace ios_internal { | |
| 8 | |
| 9 // Constants with the iOS AppStore IDs for Google native iOS apps recognized | |
|
rohitrao (ping after 24h)
2016/11/17 03:15:22
Remove this comment.
sczs1
2016/11/18 23:42:49
Done.
| |
| 10 // by Chrome. | |
| 11 const char kIOSAppStoreGmail[] = "422689480"; | |
| 12 const char kIOSAppStoreGoogleDocs[] = "842842640"; | |
| 13 const char kIOSAppStoreGoogleDrive[] = "507874739"; | |
| 14 const char kIOSAppStoreGoogleMaps[] = "585027354"; | |
| 15 const char kIOSAppStoreGooglePhotos[] = "962194608"; | |
| 16 const char kIOSAppStoreGooglePlayMusic[] = "691797987"; | |
| 17 const char kIOSAppStoreGooglePlus[] = "447119634"; | |
| 18 const char kIOSAppStoreGoogleSheets[] = "842849113"; | |
| 19 const char kIOSAppStoreGoogleSlides[] = "879478102"; | |
| 20 const char kIOSAppStoreSpaces[] = "1025159334"; | |
| 21 const char kIOSAppStoreYouTube[] = "544007664"; | |
| 22 | |
| 23 // AppStore ID for TestFlight. | |
|
rohitrao (ping after 24h)
2016/11/17 03:15:22
Remove this comment and merge the constant into th
sdefresne
2016/11/17 06:24:26
when merging, keep name in alphabetic order.
sczs1
2016/11/18 23:42:48
Done.
| |
| 24 const char kIOSAppStoreTestFlight[] = "899247664"; | |
| 25 | |
| 26 } // namespace ios_internal | |
| OLD | NEW |