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

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

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 #include "chrome/installer/util/google_chrome_binaries_distribution.h" 7 #include "chrome/installer/util/google_chrome_binaries_distribution.h"
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "chrome/installer/util/app_registration_data.h" 10 #include "chrome/installer/util/app_registration_data.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) { 99 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) {
100 NOTREACHED(); 100 NOTREACHED();
101 return 0; 101 return 0;
102 } 102 }
103 103
104 bool ChromiumBinariesDistribution::GetChromeChannel(base::string16* channel) { 104 bool ChromiumBinariesDistribution::GetChromeChannel(base::string16* channel) {
105 NOTREACHED(); 105 NOTREACHED();
106 return false; 106 return false;
107 } 107 }
108 108
109 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid( 109 base::string16 ChromiumBinariesDistribution::GetCommandExecuteImplClsid() {
110 base::string16* handler_class_uuid) { 110 return base::string16();
111 return false;
112 } 111 }
OLDNEW
« no previous file with comments | « chrome/installer/util/chromium_binaries_distribution.h ('k') | chrome/installer/util/google_chrome_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698