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

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

Issue 2482173002: [ios] Adds OmahaServiceProvider. (Closed)
Patch Set: XML Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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 {
+}

Powered by Google App Engine
This is Rietveld 408576698