| Index: ios/public/provider/chrome/browser/omaha/test_omaha_service_provider.mm
|
| diff --git a/ios/public/provider/chrome/browser/omaha/test_omaha_service_provider.mm b/ios/public/provider/chrome/browser/omaha/test_omaha_service_provider.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dd41f7a29093bfb84c2a0e8c41e462684fe6e498
|
| --- /dev/null
|
| +++ b/ios/public/provider/chrome/browser/omaha/test_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/test_omaha_service_provider.h"
|
| +
|
| +TestOmahaServiceProvider::TestOmahaServiceProvider() {}
|
| +
|
| +TestOmahaServiceProvider::~TestOmahaServiceProvider() {}
|
| +
|
| +GURL TestOmahaServiceProvider::GetUpdateServerURL() const {
|
| + return GURL();
|
| +}
|
| +
|
| +std::string TestOmahaServiceProvider::GetApplicationID() const {
|
| + return std::string();
|
| +}
|
| +
|
| +std::string TestOmahaServiceProvider::GetBrandCode() const {
|
| + return std::string();
|
| +}
|
| +
|
| +void TestOmahaServiceProvider::AppendExtraAttributes(
|
| + const std::string& tag,
|
| + OmahaXmlWriter* writer) const {}
|
|
|