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

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

Issue 13864015: Move app launcher and chrome apps shortcut strings into the installer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@migrate_app_id_fix
Patch Set: rebase, move app launcher and chrome app strings into the installer 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 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 // This file extends generic BrowserDistribution class to declare Google Chrome 5 // This file extends generic BrowserDistribution class to declare Google Chrome
6 // specific implementation. 6 // specific implementation.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
10 10
(...skipping 24 matching lines...) Expand all
35 virtual string16 GetActiveSetupGuid() OVERRIDE; 35 virtual string16 GetActiveSetupGuid() OVERRIDE;
36 36
37 virtual string16 GetAppGuid() OVERRIDE; 37 virtual string16 GetAppGuid() OVERRIDE;
38 38
39 virtual string16 GetBaseAppName() OVERRIDE; 39 virtual string16 GetBaseAppName() OVERRIDE;
40 40
41 virtual string16 GetAppShortCutName() OVERRIDE; 41 virtual string16 GetAppShortCutName() OVERRIDE;
42 42
43 virtual string16 GetAlternateApplicationName() OVERRIDE; 43 virtual string16 GetAlternateApplicationName() OVERRIDE;
44 44
45 virtual string16 GetAppListShortcutName() OVERRIDE;
46
47 virtual string16 GetAppShortcutsSubdirName() OVERRIDE;
48
45 virtual string16 GetBaseAppId() OVERRIDE; 49 virtual string16 GetBaseAppId() OVERRIDE;
46 50
47 virtual string16 GetInstallSubDir() OVERRIDE; 51 virtual string16 GetInstallSubDir() OVERRIDE;
48 52
49 virtual string16 GetPublisherName() OVERRIDE; 53 virtual string16 GetPublisherName() OVERRIDE;
50 54
51 virtual string16 GetAppDescription() OVERRIDE; 55 virtual string16 GetAppDescription() OVERRIDE;
52 56
53 virtual std::string GetSafeBrowsingName() OVERRIDE; 57 virtual std::string GetSafeBrowsingName() OVERRIDE;
54 58
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 GoogleChromeDistribution(); 100 GoogleChromeDistribution();
97 101
98 private: 102 private:
99 friend class BrowserDistribution; 103 friend class BrowserDistribution;
100 104
101 // The product ID for Google Update. 105 // The product ID for Google Update.
102 string16 product_guid_; 106 string16 product_guid_;
103 }; 107 };
104 108
105 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 109 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698