blob: f42d41f2f148823094c7bb7f5bf931d7baf32db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright (c) 2009 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.
//
// This file extends the browser distribution with a specific implementation
// for Chrome Frame.
#ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
#define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
#pragma once
#include <string>
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/util_constants.h"
class ChromeFrameDistribution : public BrowserDistribution {
public:
virtual std::wstring GetAppGuid();
virtual std::wstring GetApplicationName();
virtual std::wstring GetAlternateApplicationName();
virtual std::wstring GetInstallSubDir();
virtual std::wstring GetPublisherName();
virtual std::wstring GetAppDescription();
virtual std::wstring GetLongAppDescription();
virtual std::string GetSafeBrowsingName();
virtual std::wstring GetStateKey();
virtual std::wstring GetStateMediumKey();
virtual std::wstring GetStatsServerURL();
virtual std::wstring GetUninstallLinkName();
virtual std::wstring GetUninstallRegPath();
virtual std::wstring GetVersionKey();
virtual std::wstring GetEnvVersionKey();
virtual bool CanSetAsDefault();
// This is the point at which the Google Chrome installer removes the Google
// Update ap value. We implement this simply to have the same behaviour re.
// the ap value.
virtual void UpdateDiffInstallStatus(bool system_install,
bool incremental_install, installer_util::InstallStatus install_status);
private:
friend class BrowserDistribution;
// Disallow construction from non-friends.
ChromeFrameDistribution() {}
};
#endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
|