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

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: 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 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
37 string16 ChromiumBinariesDistribution::GetBrowserProgIdDesc() {
38 NOTREACHED();
39 return string16();
40 }
41
32 string16 ChromiumBinariesDistribution::GetDisplayName() { 42 string16 ChromiumBinariesDistribution::GetDisplayName() {
33 return kChromiumBinariesName; 43 return kChromiumBinariesName;
34 } 44 }
35 45
36 string16 ChromiumBinariesDistribution::GetShortcutName( 46 string16 ChromiumBinariesDistribution::GetShortcutName(
37 ShortcutType shortcut_type) { 47 ShortcutType shortcut_type) {
38 NOTREACHED(); 48 NOTREACHED();
39 return string16(); 49 return string16();
40 } 50 }
41 51
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 111
102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { 112 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) {
103 NOTREACHED(); 113 NOTREACHED();
104 return false; 114 return false;
105 } 115 }
106 116
107 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid( 117 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid(
108 string16* handler_class_uuid) { 118 string16* handler_class_uuid) {
109 return false; 119 return false;
110 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698