| 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..b88294dfb1601707e27ab01c1785a8d51d6a0ed9
|
| --- /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() {}
|
| +
|
| +std::string OmahaServiceProvider::GetUpdateServerURL() const {
|
| + return std::string();
|
| +}
|
| +
|
| +std::string OmahaServiceProvider::GetApplicationID() const {
|
| + return std::string();
|
| +}
|
| +
|
| +std::string OmahaServiceProvider::GetBrandCode() const {
|
| + return std::string();
|
| +}
|
| +
|
| +std::string OmahaServiceProvider::GetDeviceIDSalt() const {
|
| + return std::string();
|
| +}
|
|
|