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

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

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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 11 matching lines...) Expand all
22 public: 22 public:
23 // Opens the Google Chrome uninstall survey window. 23 // Opens the Google Chrome uninstall survey window.
24 // version refers to the version of Chrome being uninstalled. 24 // version refers to the version of Chrome being uninstalled.
25 // local_data_path is the path of the file containing json metrics that 25 // local_data_path is the path of the file containing json metrics that
26 // will be parsed. If this file indicates that the user has opted in to 26 // will be parsed. If this file indicates that the user has opted in to
27 // providing anonymous usage data, then some additional statistics will 27 // providing anonymous usage data, then some additional statistics will
28 // be added to the survey url. 28 // be added to the survey url.
29 // distribution_data contains Google Update related data that will be 29 // distribution_data contains Google Update related data that will be
30 // concatenated to the survey url if the file in local_data_path indicates 30 // concatenated to the survey url if the file in local_data_path indicates
31 // the user has opted in to providing anonymous usage data. 31 // the user has opted in to providing anonymous usage data.
32 virtual void DoPostUninstallOperations( 32 void DoPostUninstallOperations(
33 const Version& version, 33 const Version& version,
34 const base::FilePath& local_data_path, 34 const base::FilePath& local_data_path,
35 const base::string16& distribution_data) override; 35 const base::string16& distribution_data) override;
36 36
37 virtual base::string16 GetActiveSetupGuid() override; 37 base::string16 GetActiveSetupGuid() override;
38 38
39 virtual base::string16 GetShortcutName(ShortcutType shortcut_type) override; 39 base::string16 GetShortcutName(ShortcutType shortcut_type) override;
40 40
41 virtual base::string16 GetIconFilename() override; 41 base::string16 GetIconFilename() override;
42 42
43 virtual int GetIconIndex(ShortcutType shortcut_type) override; 43 int GetIconIndex(ShortcutType shortcut_type) override;
44 44
45 virtual base::string16 GetBaseAppName() override; 45 base::string16 GetBaseAppName() override;
46 46
47 virtual base::string16 GetBaseAppId() override; 47 base::string16 GetBaseAppId() override;
48 48
49 virtual base::string16 GetBrowserProgIdPrefix() override; 49 base::string16 GetBrowserProgIdPrefix() override;
50 50
51 virtual base::string16 GetBrowserProgIdDesc() override; 51 base::string16 GetBrowserProgIdDesc() override;
52 52
53 virtual base::string16 GetInstallSubDir() override; 53 base::string16 GetInstallSubDir() override;
54 54
55 virtual base::string16 GetPublisherName() override; 55 base::string16 GetPublisherName() override;
56 56
57 virtual base::string16 GetAppDescription() override; 57 base::string16 GetAppDescription() override;
58 58
59 virtual std::string GetSafeBrowsingName() override; 59 std::string GetSafeBrowsingName() override;
60 60
61 virtual std::string GetNetworkStatsServer() const override; 61 std::string GetNetworkStatsServer() const override;
62 62
63 // This method reads data from the Google Update ClientState key for 63 // This method reads data from the Google Update ClientState key for
64 // potential use in the uninstall survey. It must be called before the 64 // potential use in the uninstall survey. It must be called before the
65 // key returned by GetVersionKey() is deleted. 65 // key returned by GetVersionKey() is deleted.
66 virtual base::string16 GetDistributionData(HKEY root_key) override; 66 base::string16 GetDistributionData(HKEY root_key) override;
67 67
68 virtual base::string16 GetUninstallLinkName() override; 68 base::string16 GetUninstallLinkName() override;
69 69
70 virtual base::string16 GetUninstallRegPath() override; 70 base::string16 GetUninstallRegPath() override;
71 71
72 virtual bool GetCommandExecuteImplClsid( 72 bool GetCommandExecuteImplClsid(base::string16* handler_class_uuid) override;
73 base::string16* handler_class_uuid) override;
74 73
75 virtual void UpdateInstallStatus( 74 void UpdateInstallStatus(
76 bool system_install, 75 bool system_install,
77 installer::ArchiveType archive_type, 76 installer::ArchiveType archive_type,
78 installer::InstallStatus install_status) override; 77 installer::InstallStatus install_status) override;
79 78
80 virtual bool ShouldSetExperimentLabels() override; 79 bool ShouldSetExperimentLabels() override;
81 80
82 virtual bool HasUserExperiments() override; 81 bool HasUserExperiments() override;
83 82
84 protected: 83 protected:
85 // Disallow construction from others. 84 // Disallow construction from others.
86 GoogleChromeDistribution(); 85 GoogleChromeDistribution();
87 86
88 explicit GoogleChromeDistribution( 87 explicit GoogleChromeDistribution(
89 scoped_ptr<AppRegistrationData> app_reg_data); 88 scoped_ptr<AppRegistrationData> app_reg_data);
90 89
91 private: 90 private:
92 friend class BrowserDistribution; 91 friend class BrowserDistribution;
93 }; 92 };
94 93
95 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 94 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/firewall_manager_win.cc ('k') | chrome/installer/util/google_chrome_sxs_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698