Index: chrome/installer/util/chrome_frame_distribution.h |
=================================================================== |
--- chrome/installer/util/chrome_frame_distribution.h (revision 0) |
+++ chrome/installer/util/chrome_frame_distribution.h (revision 0) |
@@ -0,0 +1,50 @@ |
+// Copyright (c) 2009 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 extends the browser distribution with a specific implementation |
+// for Chrome Frame. |
+ |
+#ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
+#define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
+ |
+#include <string> |
+ |
+#include "chrome/installer/util/browser_distribution.h" |
+#include "chrome/installer/util/util_constants.h" |
+ |
+class ChromeFrameDistribution : public BrowserDistribution { |
+ public: |
+ virtual std::wstring GetApplicationName(); |
+ |
+ virtual std::wstring GetAlternateApplicationName(); |
+ |
+ virtual std::wstring GetInstallSubDir(); |
+ |
+ virtual std::wstring GetPublisherName(); |
+ |
+ virtual std::wstring GetAppDescription(); |
+ |
+ virtual std::wstring GetStateKey(); |
+ |
+ virtual std::wstring GetStateMediumKey(); |
+ |
+ virtual std::wstring GetStatsServerURL(); |
+ |
+ virtual std::wstring GetUninstallLinkName(); |
+ |
+ virtual std::wstring GetUninstallRegPath(); |
+ |
+ virtual std::wstring GetVersionKey(); |
+ |
+ virtual int GetInstallReturnCode(installer_util::InstallStatus status); |
+ |
+ private: |
+ friend class BrowserDistribution; |
+ |
+ // Disallow construction from non-friends. |
+ ChromeFrameDistribution() {} |
+ |
+}; |
+ |
+#endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
Property changes on: chrome\installer\util\chrome_frame_distribution.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |