OLD | NEW |
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 <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 base::string16 ChromiumBinariesDistribution::GetBrowserProgIdDesc() { | 46 base::string16 ChromiumBinariesDistribution::GetBrowserProgIdDesc() { |
47 NOTREACHED(); | 47 NOTREACHED(); |
48 return base::string16(); | 48 return base::string16(); |
49 } | 49 } |
50 | 50 |
51 base::string16 ChromiumBinariesDistribution::GetDisplayName() { | 51 base::string16 ChromiumBinariesDistribution::GetDisplayName() { |
52 return kChromiumBinariesName; | 52 return kChromiumBinariesName; |
53 } | 53 } |
54 | 54 |
55 base::string16 ChromiumBinariesDistribution::GetShortcutName( | 55 base::string16 ChromiumBinariesDistribution::GetShortcutName() { |
56 ShortcutType shortcut_type) { | |
57 NOTREACHED(); | 56 NOTREACHED(); |
58 return base::string16(); | 57 return base::string16(); |
59 } | 58 } |
60 | 59 |
61 base::string16 ChromiumBinariesDistribution::GetBaseAppId() { | 60 base::string16 ChromiumBinariesDistribution::GetBaseAppId() { |
62 NOTREACHED(); | 61 NOTREACHED(); |
63 return base::string16(); | 62 return base::string16(); |
64 } | 63 } |
65 | 64 |
66 base::string16 ChromiumBinariesDistribution::GetInstallSubDir() { | 65 base::string16 ChromiumBinariesDistribution::GetInstallSubDir() { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 base::string16 ChromiumBinariesDistribution::GetUninstallRegPath() { | 97 base::string16 ChromiumBinariesDistribution::GetUninstallRegPath() { |
99 NOTREACHED(); | 98 NOTREACHED(); |
100 return base::string16(); | 99 return base::string16(); |
101 } | 100 } |
102 | 101 |
103 BrowserDistribution::DefaultBrowserControlPolicy | 102 BrowserDistribution::DefaultBrowserControlPolicy |
104 ChromiumBinariesDistribution::GetDefaultBrowserControlPolicy() { | 103 ChromiumBinariesDistribution::GetDefaultBrowserControlPolicy() { |
105 return DEFAULT_BROWSER_UNSUPPORTED; | 104 return DEFAULT_BROWSER_UNSUPPORTED; |
106 } | 105 } |
107 | 106 |
108 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) { | 107 int ChromiumBinariesDistribution::GetIconIndex() { |
109 NOTREACHED(); | 108 NOTREACHED(); |
110 return 0; | 109 return 0; |
111 } | 110 } |
112 | 111 |
113 bool ChromiumBinariesDistribution::GetChromeChannel(base::string16* channel) { | 112 bool ChromiumBinariesDistribution::GetChromeChannel(base::string16* channel) { |
114 NOTREACHED(); | 113 NOTREACHED(); |
115 return false; | 114 return false; |
116 } | 115 } |
117 | 116 |
118 base::string16 ChromiumBinariesDistribution::GetCommandExecuteImplClsid() { | 117 base::string16 ChromiumBinariesDistribution::GetCommandExecuteImplClsid() { |
119 return base::string16(); | 118 return base::string16(); |
120 } | 119 } |
OLD | NEW |