Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Side by Side Diff: ios/chrome/browser/native_app_launcher/ios_appstore_ids.mm

Issue 2949103008: [ObjC ARC] Converts ios/chrome/browser/native_app_launcher:native_app_launcher to ARC. (Closed)
Patch Set: missing weak Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ios/chrome/browser/native_app_launcher/ios_appstore_ids.h" 5 #include "ios/chrome/browser/native_app_launcher/ios_appstore_ids.h"
6 6
7 #if !defined(__has_feature) || !__has_feature(objc_arc)
8 #error "This file requires ARC support."
9 #endif
10
7 const char kIOSAppStoreGmail[] = "422689480"; 11 const char kIOSAppStoreGmail[] = "422689480";
8 const char kIOSAppStoreGoogleDocs[] = "842842640"; 12 const char kIOSAppStoreGoogleDocs[] = "842842640";
9 const char kIOSAppStoreGoogleDrive[] = "507874739"; 13 const char kIOSAppStoreGoogleDrive[] = "507874739";
10 const char kIOSAppStoreGoogleMaps[] = "585027354"; 14 const char kIOSAppStoreGoogleMaps[] = "585027354";
11 const char kIOSAppStoreGooglePhotos[] = "962194608"; 15 const char kIOSAppStoreGooglePhotos[] = "962194608";
12 const char kIOSAppStoreGooglePlayMusic[] = "691797987"; 16 const char kIOSAppStoreGooglePlayMusic[] = "691797987";
13 const char kIOSAppStoreGooglePlus[] = "447119634"; 17 const char kIOSAppStoreGooglePlus[] = "447119634";
14 const char kIOSAppStoreGoogleSheets[] = "842849113"; 18 const char kIOSAppStoreGoogleSheets[] = "842849113";
15 const char kIOSAppStoreGoogleSlides[] = "879478102"; 19 const char kIOSAppStoreGoogleSlides[] = "879478102";
16 const char kIOSAppStoreTestFlight[] = "899247664"; 20 const char kIOSAppStoreTestFlight[] = "899247664";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698