| 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 declares a class that contains various method related to branding. | 5 // This file declares a class that contains various method related to branding. |
| 6 | 6 |
| 7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "chrome/installer/util/browser_distribution.h" | 12 #include "chrome/installer/util/browser_distribution.h" |
| 13 | 13 |
| 14 class ChromiumBinariesDistribution : public BrowserDistribution { | 14 class ChromiumBinariesDistribution : public BrowserDistribution { |
| 15 public: | 15 public: |
| 16 virtual string16 GetAppGuid() OVERRIDE; | 16 virtual string16 GetAppGuid() OVERRIDE; |
| 17 | 17 |
| 18 virtual string16 GetBrowserProgIdPrefix() OVERRIDE; |
| 19 |
| 20 virtual string16 GetBrowserProgIdDesc() OVERRIDE; |
| 21 |
| 18 virtual string16 GetDisplayName() OVERRIDE; | 22 virtual string16 GetDisplayName() OVERRIDE; |
| 19 | 23 |
| 20 virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; | 24 virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; |
| 21 | 25 |
| 22 virtual int GetIconIndex(ShortcutType shortcut_type) OVERRIDE; | 26 virtual int GetIconIndex(ShortcutType shortcut_type) OVERRIDE; |
| 23 | 27 |
| 24 virtual string16 GetBaseAppName() OVERRIDE; | 28 virtual string16 GetBaseAppName() OVERRIDE; |
| 25 | 29 |
| 26 virtual string16 GetBaseAppId() OVERRIDE; | 30 virtual string16 GetBaseAppId() OVERRIDE; |
| 27 | 31 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 57 | 61 |
| 58 ChromiumBinariesDistribution(); | 62 ChromiumBinariesDistribution(); |
| 59 | 63 |
| 60 BrowserDistribution* browser_distribution_; | 64 BrowserDistribution* browser_distribution_; |
| 61 | 65 |
| 62 private: | 66 private: |
| 63 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); | 67 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); |
| 64 }; | 68 }; |
| 65 | 69 |
| 66 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 70 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| OLD | NEW |