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

Side by Side Diff: ios/public/provider/chrome/browser/omaha/omaha_service_provider.mm

Issue 2832533002: [ObjC ARC] Converts ios/public/provider/chrome/browser/omaha:omaha to ARC. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « ios/public/provider/chrome/browser/omaha/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #import "ios/public/provider/chrome/browser/omaha/omaha_service_provider.h" 5 #import "ios/public/provider/chrome/browser/omaha/omaha_service_provider.h"
6 6
7 #if !defined(__has_feature) || !__has_feature(objc_arc)
8 #error "This file requires ARC support."
9 #endif
10
7 OmahaServiceProvider::OmahaServiceProvider() {} 11 OmahaServiceProvider::OmahaServiceProvider() {}
8 12
9 OmahaServiceProvider::~OmahaServiceProvider() {} 13 OmahaServiceProvider::~OmahaServiceProvider() {}
10 14
11 void OmahaServiceProvider::Initialize() {} 15 void OmahaServiceProvider::Initialize() {}
12 16
13 GURL OmahaServiceProvider::GetUpdateServerURL() const { 17 GURL OmahaServiceProvider::GetUpdateServerURL() const {
14 return GURL(); 18 return GURL();
15 } 19 }
16 20
17 std::string OmahaServiceProvider::GetApplicationID() const { 21 std::string OmahaServiceProvider::GetApplicationID() const {
18 return std::string(); 22 return std::string();
19 } 23 }
20 24
21 std::string OmahaServiceProvider::GetBrandCode() const { 25 std::string OmahaServiceProvider::GetBrandCode() const {
22 return std::string(); 26 return std::string();
23 } 27 }
24 28
25 void OmahaServiceProvider::AppendExtraAttributes(const std::string& tag, 29 void OmahaServiceProvider::AppendExtraAttributes(const std::string& tag,
26 OmahaXmlWriter* writer) const { 30 OmahaXmlWriter* writer) const {
27 } 31 }
OLDNEW
« no previous file with comments | « ios/public/provider/chrome/browser/omaha/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698