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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/google_chrome_binaries_distribution.h
===================================================================
--- chrome/installer/util/google_chrome_binaries_distribution.h (revision 0)
+++ chrome/installer/util/google_chrome_binaries_distribution.h (revision 0)
@@ -0,0 +1,38 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+// This file declares a class that contains various method related to branding.
+
+#ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
+#define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
+#pragma once
+
+#include "chrome/installer/util/chromium_binaries_distribution.h"
+
+class GoogleChromeBinariesDistribution : public ChromiumBinariesDistribution {
+ public:
+ virtual std::wstring GetAppGuid();
+
+ virtual std::wstring GetAppShortCutName();
+
+ virtual std::wstring GetStateKey();
+
+ virtual std::wstring GetStateMediumKey();
+
+ virtual std::wstring GetVersionKey();
+
+ virtual void UpdateInstallStatus(bool system_install,
+ bool incremental_install, bool multi_install,
+ installer::InstallStatus install_status);
+
+ protected:
+ friend class BrowserDistribution;
+
+ GoogleChromeBinariesDistribution();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(GoogleChromeBinariesDistribution);
+};
+
+#endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
Property changes on: chrome\installer\util\google_chrome_binaries_distribution.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« 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