Remove ExtensionPrefs::SetDidExtensionEscalatePermissions.
[chromium-blink-merge.git] / extensions / shell / browser / shell_update_query_params_delegate.cc
blob462b1ffde00768c6920dbf19ccfa8408eed8502d
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "extensions/shell/browser/shell_update_query_params_delegate.h"
7 #include <string>
9 namespace extensions {
11 ShellUpdateQueryParamsDelegate::ShellUpdateQueryParamsDelegate() {
14 ShellUpdateQueryParamsDelegate::~ShellUpdateQueryParamsDelegate() {
17 std::string ShellUpdateQueryParamsDelegate::GetExtraParams() {
18 // This version number is high enough to be supported by Omaha
19 // (below 31 is unsupported), but it's fake enough to be obviously
20 // not a Chrome release.
21 return "&prodversion=38.1234.5678.9";
24 } // namespace extensions