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

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

Issue 10246007: Fix GetAppShortcutName to return a localized name for Chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
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 #pragma once 10 #pragma once
(...skipping 25 matching lines...) Expand all
36 const Version& version, 36 const Version& version,
37 const FilePath& local_data_path, 37 const FilePath& local_data_path,
38 const std::wstring& distribution_data) OVERRIDE; 38 const std::wstring& distribution_data) OVERRIDE;
39 39
40 virtual std::wstring GetAppGuid() OVERRIDE; 40 virtual std::wstring GetAppGuid() OVERRIDE;
41 41
42 virtual std::wstring GetApplicationName() OVERRIDE; 42 virtual std::wstring GetApplicationName() OVERRIDE;
43 43
44 virtual std::wstring GetAlternateApplicationName() OVERRIDE; 44 virtual std::wstring GetAlternateApplicationName() OVERRIDE;
45 45
46 virtual std::wstring GetAppShortCutName() OVERRIDE;
grt (UTC plus 2) 2012/04/27 13:00:25 move this between GetApplicationName and GetAltern
47
46 virtual std::wstring GetBrowserAppId() OVERRIDE; 48 virtual std::wstring GetBrowserAppId() OVERRIDE;
47 49
48 virtual std::wstring GetInstallSubDir() OVERRIDE; 50 virtual std::wstring GetInstallSubDir() OVERRIDE;
49 51
50 virtual std::wstring GetPublisherName() OVERRIDE; 52 virtual std::wstring GetPublisherName() OVERRIDE;
51 53
52 virtual std::wstring GetAppDescription() OVERRIDE; 54 virtual std::wstring GetAppDescription() OVERRIDE;
53 55
54 virtual std::string GetSafeBrowsingName() OVERRIDE; 56 virtual std::string GetSafeBrowsingName() OVERRIDE;
55 57
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 // Returns true if at least one uninstall metric was found in 135 // Returns true if at least one uninstall metric was found in
134 // uninstall_metrics_dict, false otherwise. 136 // uninstall_metrics_dict, false otherwise.
135 virtual bool BuildUninstallMetricsString( 137 virtual bool BuildUninstallMetricsString(
136 base::DictionaryValue* uninstall_metrics_dict, std::wstring* metrics); 138 base::DictionaryValue* uninstall_metrics_dict, std::wstring* metrics);
137 139
138 // The product ID for Google Update. 140 // The product ID for Google Update.
139 std::wstring product_guid_; 141 std::wstring product_guid_;
140 }; 142 };
141 143
142 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 144 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698