| 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 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ |
| 6 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ | 6 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "chrome/installer/util/browser_distribution.h" | 9 #include "chrome/installer/util/browser_distribution.h" |
| 10 #include "chrome/installer/util/google_chrome_distribution.h" | 10 #include "chrome/installer/util/google_chrome_distribution.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 int GetIconIndex(ShortcutType shortcut_type) override; | 24 int GetIconIndex(ShortcutType shortcut_type) override; |
| 25 base::string16 GetStartMenuShortcutSubfolder( | 25 base::string16 GetStartMenuShortcutSubfolder( |
| 26 Subfolder subfolder_type) override; | 26 Subfolder subfolder_type) override; |
| 27 base::string16 GetBaseAppId() override; | 27 base::string16 GetBaseAppId() override; |
| 28 base::string16 GetBrowserProgIdPrefix() override; | 28 base::string16 GetBrowserProgIdPrefix() override; |
| 29 base::string16 GetBrowserProgIdDesc() override; | 29 base::string16 GetBrowserProgIdDesc() override; |
| 30 base::string16 GetInstallSubDir() override; | 30 base::string16 GetInstallSubDir() override; |
| 31 base::string16 GetUninstallRegPath() override; | 31 base::string16 GetUninstallRegPath() override; |
| 32 DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() override; | 32 DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() override; |
| 33 bool GetChromeChannel(base::string16* channel) override; | 33 bool GetChromeChannel(base::string16* channel) override; |
| 34 bool GetCommandExecuteImplClsid(base::string16* handler_class_uuid) override; | 34 base::string16 GetCommandExecuteImplClsid() override; |
| 35 bool ShouldSetExperimentLabels() override; | 35 bool ShouldSetExperimentLabels() override; |
| 36 bool HasUserExperiments() override; | 36 bool HasUserExperiments() override; |
| 37 // returns the channel name for GoogleChromeSxSDistribution | 37 // returns the channel name for GoogleChromeSxSDistribution |
| 38 static base::string16 ChannelName(); | 38 static base::string16 ChannelName(); |
| 39 private: | 39 private: |
| 40 friend class BrowserDistribution; | 40 friend class BrowserDistribution; |
| 41 | 41 |
| 42 // Disallow construction from non-friends. | 42 // Disallow construction from non-friends. |
| 43 GoogleChromeSxSDistribution(); | 43 GoogleChromeSxSDistribution(); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ | 46 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ |
| OLD | NEW |