| Index: ios/public/provider/chrome/browser/omaha/omaha_service_provider.mm
|
| diff --git a/ios/public/provider/chrome/browser/omaha/omaha_service_provider.mm b/ios/public/provider/chrome/browser/omaha/omaha_service_provider.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..981869a878c4aa02d755131a1fe95ab09c49e09f
|
| --- /dev/null
|
| +++ b/ios/public/provider/chrome/browser/omaha/omaha_service_provider.mm
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#import "ios/public/provider/chrome/browser/omaha/omaha_service_provider.h"
|
| +
|
| +OmahaServiceProvider::OmahaServiceProvider() {}
|
| +
|
| +OmahaServiceProvider::~OmahaServiceProvider() {}
|
| +
|
| +GURL OmahaServiceProvider::GetUpdateServerURL() const {
|
| + return GURL();
|
| +}
|
| +
|
| +std::string OmahaServiceProvider::GetApplicationID() const {
|
| + return std::string();
|
| +}
|
| +
|
| +std::string OmahaServiceProvider::GetBrandCode() const {
|
| + return std::string();
|
| +}
|
| +
|
| +void OmahaServiceProvider::AppendExtraAttributes(const std::string& tag,
|
| + OmahaXmlWriter* writer) const {
|
| +}
|
|
|