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_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| 9 #pragma once |
| 10 |
| 11 #include <string> |
| 12 |
| 13 #include "chrome/installer/util/browser_distribution.h" |
| 14 |
| 15 class ChromiumBinariesDistribution : public BrowserDistribution { |
| 16 public: |
| 17 virtual std::wstring GetAppGuid(); |
| 18 |
| 19 virtual std::wstring GetApplicationName(); |
| 20 |
| 21 virtual std::wstring GetAppShortCutName(); |
| 22 |
| 23 virtual std::wstring GetAlternateApplicationName(); |
| 24 |
| 25 virtual std::wstring GetBrowserAppId(); |
| 26 |
| 27 virtual std::wstring GetInstallSubDir(); |
| 28 |
| 29 virtual std::wstring GetPublisherName(); |
| 30 |
| 31 virtual std::wstring GetAppDescription(); |
| 32 |
| 33 virtual std::wstring GetLongAppDescription(); |
| 34 |
| 35 virtual std::string GetSafeBrowsingName(); |
| 36 |
| 37 virtual std::wstring GetStateKey(); |
| 38 |
| 39 virtual std::wstring GetStateMediumKey(); |
| 40 |
| 41 virtual std::wstring GetUninstallLinkName(); |
| 42 |
| 43 virtual std::wstring GetUninstallRegPath(); |
| 44 |
| 45 virtual std::wstring GetVersionKey(); |
| 46 |
| 47 virtual bool CanSetAsDefault(); |
| 48 |
| 49 virtual int GetIconIndex(); |
| 50 |
| 51 virtual bool GetChromeChannel(std::wstring* channel); |
| 52 |
| 53 protected: |
| 54 friend class BrowserDistribution; |
| 55 |
| 56 ChromiumBinariesDistribution(); |
| 57 |
| 58 BrowserDistribution* browser_distribution_; |
| 59 |
| 60 private: |
| 61 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); |
| 62 }; |
| 63 |
| 64 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
OLD | NEW |