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

Unified Diff: extensions/shell/browser/shell_update_query_params_delegate.h

Issue 803313003: Rename omaha_client and similar tokens to update_client in all contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: rebase to master Created 5 years, 11 months 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: extensions/shell/browser/shell_update_query_params_delegate.h
diff --git a/extensions/shell/browser/shell_update_query_params_delegate.h b/extensions/shell/browser/shell_update_query_params_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..39887e6ac677490980af76afb8a786a1577a0b51
--- /dev/null
+++ b/extensions/shell/browser/shell_update_query_params_delegate.h
@@ -0,0 +1,28 @@
+// Copyright 2014 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.
+
+#ifndef EXTENSIONS_SHELL_BROWSER_SHELL_UPDATE_QUERY_PARAMS_DELEGATE_H_
+#define EXTENSIONS_SHELL_BROWSER_SHELL_UPDATE_QUERY_PARAMS_DELEGATE_H_
+
+#include <string>
+
+#include "components/update_client/update_query_params_delegate.h"
+
+namespace extensions {
+
+class ShellUpdateQueryParamsDelegate
+ : public update_client::UpdateQueryParamsDelegate {
+ public:
+ ShellUpdateQueryParamsDelegate();
+ ~ShellUpdateQueryParamsDelegate() override;
+
+ std::string GetExtraParams() override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ShellUpdateQueryParamsDelegate);
+};
+
+} // namespace extensions
+
+#endif // EXTENSIONS_SHELL_BROWSER_SHELL_UPDATE_QUERY_PARAMS_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698