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

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

Issue 8511053: Cleanup: Remove unneeded forward declarations in chrome/installer. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 #pragma once 10 #pragma once
11 11
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "chrome/installer/util/browser_distribution.h" 15 #include "chrome/installer/util/browser_distribution.h"
16 #include "chrome/installer/util/util_constants.h" 16 #include "chrome/installer/util/util_constants.h"
17 17
18 namespace installer {
19 class MasterPreferences;
20 }
21
22 class ChromeFrameDistribution : public BrowserDistribution { 18 class ChromeFrameDistribution : public BrowserDistribution {
23 public: 19 public:
24 virtual std::wstring GetAppGuid() OVERRIDE; 20 virtual std::wstring GetAppGuid() OVERRIDE;
25 21
26 virtual std::wstring GetApplicationName() OVERRIDE; 22 virtual std::wstring GetApplicationName() OVERRIDE;
27 23
28 virtual std::wstring GetAppShortCutName() OVERRIDE; 24 virtual std::wstring GetAppShortCutName() OVERRIDE;
29 25
30 virtual std::wstring GetAlternateApplicationName() OVERRIDE; 26 virtual std::wstring GetAlternateApplicationName() OVERRIDE;
31 27
(...skipping 28 matching lines...) Expand all
60 installer::InstallStatus install_status) OVERRIDE; 56 installer::InstallStatus install_status) OVERRIDE;
61 57
62 protected: 58 protected:
63 friend class BrowserDistribution; 59 friend class BrowserDistribution;
64 60
65 // Disallow construction from non-friends. 61 // Disallow construction from non-friends.
66 ChromeFrameDistribution(); 62 ChromeFrameDistribution();
67 }; 63 };
68 64
69 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 65 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/browser_distribution.h ('k') | chrome/installer/util/google_chrome_sxs_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698