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

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

Issue 23258005: Give SxS distribution its own registration GUIDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move typedef Created 7 years, 3 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
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 extends the browser distribution with a specific implementation 5 // This file extends the browser distribution with a specific implementation
6 // for Chrome Frame. 6 // for Chrome Frame.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
10 10
11 #include "chrome/installer/util/browser_distribution.h" 11 #include "chrome/installer/util/browser_distribution.h"
12 #include "chrome/installer/util/util_constants.h" 12 #include "chrome/installer/util/util_constants.h"
13 13
14 class ChromeFrameDistribution : public BrowserDistribution { 14 class ChromeFrameDistribution : public BrowserDistribution {
15 public: 15 public:
16 virtual string16 GetAppGuid() OVERRIDE; 16 virtual string16 GetAppGuid() OVERRIDE;
17 17
18 virtual string16 GetBrowserProgIdPrefix() OVERRIDE;
19
20 virtual string16 GetBrowserProgIdDesc() OVERRIDE;
21
18 virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; 22 virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE;
19 23
20 virtual int GetIconIndex(ShortcutType shortcut_type) OVERRIDE; 24 virtual int GetIconIndex(ShortcutType shortcut_type) OVERRIDE;
21 25
22 virtual string16 GetBaseAppName() OVERRIDE; 26 virtual string16 GetBaseAppName() OVERRIDE;
23 27
24 virtual string16 GetInstallSubDir() OVERRIDE; 28 virtual string16 GetInstallSubDir() OVERRIDE;
25 29
26 virtual string16 GetPublisherName() OVERRIDE; 30 virtual string16 GetPublisherName() OVERRIDE;
27 31
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 installer::InstallStatus install_status) OVERRIDE; 63 installer::InstallStatus install_status) OVERRIDE;
60 64
61 protected: 65 protected:
62 friend class BrowserDistribution; 66 friend class BrowserDistribution;
63 67
64 // Disallow construction from non-friends. 68 // Disallow construction from non-friends.
65 ChromeFrameDistribution(); 69 ChromeFrameDistribution();
66 }; 70 };
67 71
68 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 72 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698