Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/installer/util/google_chrome_sxs_distribution.h

Issue 11280067: Refactor SetOmahaExperimentLabel out of gcpai and into install_util. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase; grt comments; unit tests Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/string16.h" 8 #include "base/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 12 matching lines...) Expand all
23 virtual string16 GetAppShortCutName() OVERRIDE; 23 virtual string16 GetAppShortCutName() OVERRIDE;
24 virtual string16 GetBaseAppId() OVERRIDE; 24 virtual string16 GetBaseAppId() OVERRIDE;
25 virtual string16 GetInstallSubDir() OVERRIDE; 25 virtual string16 GetInstallSubDir() OVERRIDE;
26 virtual string16 GetUninstallRegPath() OVERRIDE; 26 virtual string16 GetUninstallRegPath() OVERRIDE;
27 virtual bool CanSetAsDefault() OVERRIDE; 27 virtual bool CanSetAsDefault() OVERRIDE;
28 virtual int GetIconIndex() OVERRIDE; 28 virtual int GetIconIndex() OVERRIDE;
29 virtual bool GetChromeChannel(string16* channel) OVERRIDE; 29 virtual bool GetChromeChannel(string16* channel) OVERRIDE;
30 virtual bool GetCommandExecuteImplClsid( 30 virtual bool GetCommandExecuteImplClsid(
31 string16* handler_class_uuid) OVERRIDE; 31 string16* handler_class_uuid) OVERRIDE;
32 virtual bool AppHostIsSupported() OVERRIDE; 32 virtual bool AppHostIsSupported() OVERRIDE;
33 virtual bool ShouldSetExperimentLabels() OVERRIDE;
33 // returns the channel name for GoogleChromeSxSDistribution 34 // returns the channel name for GoogleChromeSxSDistribution
34 static string16 ChannelName(); 35 static string16 ChannelName();
35 private: 36 private:
36 friend class BrowserDistribution; 37 friend class BrowserDistribution;
37 38
38 // Disallow construction from non-friends. 39 // Disallow construction from non-friends.
39 GoogleChromeSxSDistribution(); 40 GoogleChromeSxSDistribution();
40 }; 41 };
41 42
42 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_ 43 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_SXS_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698