OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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. |
| 6 |
| 7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_ |
| 8 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_ |
| 9 #pragma once |
| 10 |
| 11 #include "chrome/installer/util/chromium_binaries_distribution.h" |
| 12 |
| 13 class GoogleChromeBinariesDistribution : public ChromiumBinariesDistribution { |
| 14 public: |
| 15 virtual std::wstring GetAppGuid(); |
| 16 |
| 17 virtual std::wstring GetAppShortCutName(); |
| 18 |
| 19 virtual std::wstring GetStateKey(); |
| 20 |
| 21 virtual std::wstring GetStateMediumKey(); |
| 22 |
| 23 virtual std::wstring GetVersionKey(); |
| 24 |
| 25 virtual void UpdateInstallStatus(bool system_install, |
| 26 bool incremental_install, bool multi_install, |
| 27 installer::InstallStatus install_status); |
| 28 |
| 29 protected: |
| 30 friend class BrowserDistribution; |
| 31 |
| 32 GoogleChromeBinariesDistribution(); |
| 33 |
| 34 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(GoogleChromeBinariesDistribution); |
| 36 }; |
| 37 |
| 38 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_ |
OLD | NEW |