Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / installer / util / google_chrome_binaries_distribution.h
blobd2791509bc4dc45ab85b4d8764374173c0dd0109
1 // Copyright (c) 2012 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.
4 //
5 // This file declares a class that contains various method related to branding.
7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
8 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
10 #include "chrome/installer/util/chromium_binaries_distribution.h"
12 class GoogleChromeBinariesDistribution : public ChromiumBinariesDistribution {
13 public:
14 virtual base::string16 GetAppGuid();
16 virtual base::string16 GetDisplayName();
18 virtual base::string16 GetShortcutName(ShortcutType shortcut_type);
20 virtual base::string16 GetStateKey();
22 virtual base::string16 GetStateMediumKey();
24 virtual base::string16 GetVersionKey();
26 virtual void UpdateInstallStatus(bool system_install,
27 installer::ArchiveType archive_type,
28 installer::InstallStatus install_status);
30 protected:
31 friend class BrowserDistribution;
33 GoogleChromeBinariesDistribution();
35 private:
36 DISALLOW_COPY_AND_ASSIGN(GoogleChromeBinariesDistribution);
39 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_