| 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 "base/logging.h" | 9 #include "base/logging.h" |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |