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

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

Issue 10446111: Abstract suffixing logic away from GetApplicationName (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase on suffix@r142211 Created 8 years, 6 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 declares a class that contains various method related to branding. 5 // This file declares a class that contains various method related to branding.
6 6
7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ 7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
9 #pragma once 9 #pragma once
10 10
11 #include <string> 11 #include <string>
12 12
13 #include "chrome/installer/util/browser_distribution.h" 13 #include "chrome/installer/util/browser_distribution.h"
14 14
15 class ChromiumBinariesDistribution : public BrowserDistribution { 15 class ChromiumBinariesDistribution : public BrowserDistribution {
16 public: 16 public:
17 virtual string16 GetAppGuid() OVERRIDE; 17 virtual string16 GetAppGuid() OVERRIDE;
18 18
19 virtual string16 GetApplicationName() OVERRIDE; 19 virtual string16 GetBaseAppName() OVERRIDE;
20 20
21 virtual string16 GetAppShortCutName() OVERRIDE; 21 virtual string16 GetAppShortCutName() OVERRIDE;
22 22
23 virtual string16 GetAlternateApplicationName() OVERRIDE; 23 virtual string16 GetAlternateApplicationName() OVERRIDE;
24 24
25 virtual string16 GetBrowserAppId() OVERRIDE; 25 virtual string16 GetBrowserAppId() OVERRIDE;
26 26
27 virtual string16 GetInstallSubDir() OVERRIDE; 27 virtual string16 GetInstallSubDir() OVERRIDE;
28 28
29 virtual string16 GetPublisherName() OVERRIDE; 29 virtual string16 GetPublisherName() OVERRIDE;
(...skipping 25 matching lines...) Expand all
55 55
56 ChromiumBinariesDistribution(); 56 ChromiumBinariesDistribution();
57 57
58 BrowserDistribution* browser_distribution_; 58 BrowserDistribution* browser_distribution_;
59 59
60 private: 60 private:
61 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); 61 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution);
62 }; 62 };
63 63
64 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ 64 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/chrome_frame_distribution.cc ('k') | chrome/installer/util/chromium_binaries_distribution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698