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

Unified Diff: chrome/installer/util/google_chrome_distribution.h

Issue 15255004: Refactor of BrowserDistribution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/google_chrome_distribution.h
diff --git a/chrome/installer/util/google_chrome_distribution.h b/chrome/installer/util/google_chrome_distribution.h
index f4cd2f0338cdbdd17c638b5694c27692cf4e9c49..8aff428fb0aa8f40f329fae26d66a0d0d4425254 100644
--- a/chrome/installer/util/google_chrome_distribution.h
+++ b/chrome/installer/util/google_chrome_distribution.h
@@ -38,10 +38,6 @@ class GoogleChromeDistribution : public BrowserDistribution {
virtual string16 GetBaseAppName() OVERRIDE;
- virtual string16 GetAppShortCutName() OVERRIDE;
-
- virtual string16 GetAlternateApplicationName() OVERRIDE;
-
virtual string16 GetBaseAppId() OVERRIDE;
virtual string16 GetInstallSubDir() OVERRIDE;
@@ -71,8 +67,6 @@ class GoogleChromeDistribution : public BrowserDistribution {
virtual string16 GetVersionKey() OVERRIDE;
- virtual string16 GetIconFilename() OVERRIDE;
-
virtual bool GetCommandExecuteImplClsid(
string16* handler_class_uuid) OVERRIDE;
@@ -92,6 +86,14 @@ class GoogleChromeDistribution : public BrowserDistribution {
protected:
void set_product_guid(const string16& guid) { product_guid_ = guid; }
+ virtual string16 GetAlternateApplicationName() OVERRIDE;
+
+ virtual string16 GetAppShortCutName() OVERRIDE;
+
+ virtual string16 GetIconFilename() OVERRIDE;
+
+ virtual int GetAppListIconIndex() OVERRIDE;
+
// Disallow construction from others.
GoogleChromeDistribution();

Powered by Google App Engine
This is Rietveld 408576698