| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file extends the browser distribution with a specific implementation | 5 // This file extends the browser distribution with a specific implementation |
| 6 // for Chrome Frame. | 6 // for Chrome Frame. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
| 9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
| 10 #pragma once | 10 #pragma once |
| 11 | 11 |
| 12 #include "chrome/installer/util/browser_distribution.h" | 12 #include "chrome/installer/util/browser_distribution.h" |
| 13 #include "chrome/installer/util/util_constants.h" | 13 #include "chrome/installer/util/util_constants.h" |
| 14 | 14 |
| 15 class ChromeFrameDistribution : public BrowserDistribution { | 15 class ChromeFrameDistribution : public BrowserDistribution { |
| 16 public: | 16 public: |
| 17 virtual string16 GetAppGuid() OVERRIDE; | 17 virtual string16 GetAppGuid() OVERRIDE; |
| 18 | 18 |
| 19 virtual string16 GetApplicationName() OVERRIDE; | 19 virtual string16 GetUnsuffixedAppName() OVERRIDE; |
| 20 | 20 |
| 21 virtual string16 GetAppShortCutName() OVERRIDE; | 21 virtual string16 GetAppShortCutName() OVERRIDE; |
| 22 | 22 |
| 23 virtual string16 GetAlternateApplicationName() OVERRIDE; | 23 virtual string16 GetAlternateApplicationName() OVERRIDE; |
| 24 | 24 |
| 25 virtual string16 GetInstallSubDir() OVERRIDE; | 25 virtual string16 GetInstallSubDir() OVERRIDE; |
| 26 | 26 |
| 27 virtual string16 GetPublisherName() OVERRIDE; | 27 virtual string16 GetPublisherName() OVERRIDE; |
| 28 | 28 |
| 29 virtual string16 GetAppDescription() OVERRIDE; | 29 virtual string16 GetAppDescription() OVERRIDE; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 installer::InstallStatus install_status) OVERRIDE; | 62 installer::InstallStatus install_status) OVERRIDE; |
| 63 | 63 |
| 64 protected: | 64 protected: |
| 65 friend class BrowserDistribution; | 65 friend class BrowserDistribution; |
| 66 | 66 |
| 67 // Disallow construction from non-friends. | 67 // Disallow construction from non-friends. |
| 68 ChromeFrameDistribution(); | 68 ChromeFrameDistribution(); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 71 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
| OLD | NEW |