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

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

Issue 23258005: Give SxS distribution its own registration GUIDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More code cleanup, and remove DebugEnableSetAsDefault 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 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 10
(...skipping 11 matching lines...) Expand all
22 22
23 string16 ChromiumBinariesDistribution::GetAppGuid() { 23 string16 ChromiumBinariesDistribution::GetAppGuid() {
24 return string16(); 24 return string16();
25 } 25 }
26 26
27 string16 ChromiumBinariesDistribution::GetBaseAppName() { 27 string16 ChromiumBinariesDistribution::GetBaseAppName() {
28 NOTREACHED(); 28 NOTREACHED();
29 return string16(); 29 return string16();
30 } 30 }
31 31
32 string16 ChromiumBinariesDistribution::GetBrowserProgIdPrefix() {
33 NOTREACHED();
34 return string16();
35 }
36
32 string16 ChromiumBinariesDistribution::GetDisplayName() { 37 string16 ChromiumBinariesDistribution::GetDisplayName() {
33 return kChromiumBinariesName; 38 return kChromiumBinariesName;
34 } 39 }
35 40
36 string16 ChromiumBinariesDistribution::GetShortcutName( 41 string16 ChromiumBinariesDistribution::GetShortcutName(
37 ShortcutType shortcut_type) { 42 ShortcutType shortcut_type) {
38 NOTREACHED(); 43 NOTREACHED();
39 return string16(); 44 return string16();
40 } 45 }
41 46
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 106
102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { 107 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) {
103 NOTREACHED(); 108 NOTREACHED();
104 return false; 109 return false;
105 } 110 }
106 111
107 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid( 112 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid(
108 string16* handler_class_uuid) { 113 string16* handler_class_uuid) {
109 return false; 114 return false;
110 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698