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

Side by Side Diff: chrome/installer/util/google_chrome_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_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
8 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
9 #pragma once
10
11 #include "chrome/installer/util/chromium_binaries_distribution.h"
12
13 class GoogleChromeBinariesDistribution : public ChromiumBinariesDistribution {
14 public:
15 virtual std::wstring GetAppGuid();
16
17 virtual std::wstring GetAppShortCutName();
18
19 virtual std::wstring GetStateKey();
20
21 virtual std::wstring GetStateMediumKey();
22
23 virtual std::wstring GetVersionKey();
24
25 virtual void UpdateInstallStatus(bool system_install,
26 bool incremental_install, bool multi_install,
27 installer::InstallStatus install_status);
28
29 protected:
30 friend class BrowserDistribution;
31
32 GoogleChromeBinariesDistribution();
33
34 private:
35 DISALLOW_COPY_AND_ASSIGN(GoogleChromeBinariesDistribution);
36 };
37
38 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/chromium_binaries_distribution.cc ('k') | chrome/installer/util/google_chrome_binaries_distribution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698