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

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

Issue 1321143002: Make GetCommandExecuteImplClsid return the CLSID as a string directly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_no_delegate_execute_win10
Patch Set: review:grt Created 5 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 declares a class that contains various method related to branding. 5 // This file declares a class that contains various method related to branding.
6 6
7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ 7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
9 9
10 #include <string> 10 #include <string>
(...skipping 26 matching lines...) Expand all
37 base::string16 GetLongAppDescription() override; 37 base::string16 GetLongAppDescription() override;
38 38
39 std::string GetSafeBrowsingName() override; 39 std::string GetSafeBrowsingName() override;
40 40
41 base::string16 GetUninstallRegPath() override; 41 base::string16 GetUninstallRegPath() override;
42 42
43 DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() override; 43 DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() override;
44 44
45 bool GetChromeChannel(base::string16* channel) override; 45 bool GetChromeChannel(base::string16* channel) override;
46 46
47 bool GetCommandExecuteImplClsid(base::string16* handler_class_uuid) override; 47 base::string16 GetCommandExecuteImplClsid() override;
48 48
49 protected: 49 protected:
50 friend class BrowserDistribution; 50 friend class BrowserDistribution;
51 51
52 ChromiumBinariesDistribution(); 52 ChromiumBinariesDistribution();
53 53
54 explicit ChromiumBinariesDistribution( 54 explicit ChromiumBinariesDistribution(
55 scoped_ptr<AppRegistrationData> app_reg_data); 55 scoped_ptr<AppRegistrationData> app_reg_data);
56 56
57 BrowserDistribution* browser_distribution_; 57 BrowserDistribution* browser_distribution_;
58 58
59 private: 59 private:
60 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); 60 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution);
61 }; 61 };
62 62
63 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ 63 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/chrome_frame_distribution.cc ('k') | chrome/installer/util/chromium_binaries_distribution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698