| 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_
|
|
|