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

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

Issue 6288009: More installer refactoring in the interest of fixing some bugs and cleaning t... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // This file declares a class that contains various method related to branding.
6
7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
9 #pragma once
10
11 #include <string>
12
13 #include "chrome/installer/util/browser_distribution.h"
14
15 class ChromiumBinariesDistribution : public BrowserDistribution {
16 public:
17 virtual std::wstring GetAppGuid();
18
19 virtual std::wstring GetApplicationName();
20
21 virtual std::wstring GetAppShortCutName();
22
23 virtual std::wstring GetAlternateApplicationName();
24
25 virtual std::wstring GetBrowserAppId();
26
27 virtual std::wstring GetInstallSubDir();
28
29 virtual std::wstring GetPublisherName();
30
31 virtual std::wstring GetAppDescription();
32
33 virtual std::wstring GetLongAppDescription();
34
35 virtual std::string GetSafeBrowsingName();
36
37 virtual std::wstring GetStateKey();
38
39 virtual std::wstring GetStateMediumKey();
40
41 virtual std::wstring GetUninstallLinkName();
42
43 virtual std::wstring GetUninstallRegPath();
44
45 virtual std::wstring GetVersionKey();
46
47 virtual bool CanSetAsDefault();
48
49 virtual int GetIconIndex();
50
51 virtual bool GetChromeChannel(std::wstring* channel);
52
53 protected:
54 friend class BrowserDistribution;
55
56 ChromiumBinariesDistribution();
57
58 BrowserDistribution* browser_distribution_;
59
60 private:
61 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution);
62 };
63
64 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/chrome_frame_operations.cc ('k') | chrome/installer/util/chromium_binaries_distribution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698