| OLD | NEW |
| 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 } |
| OLD | NEW |