| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 string16 ChromiumBinariesDistribution::GetAppShortCutName() { | 32 string16 ChromiumBinariesDistribution::GetAppShortCutName() { |
| 33 return kChromiumBinariesName; | 33 return kChromiumBinariesName; |
| 34 } | 34 } |
| 35 | 35 |
| 36 string16 ChromiumBinariesDistribution::GetAlternateApplicationName() { | 36 string16 ChromiumBinariesDistribution::GetAlternateApplicationName() { |
| 37 NOTREACHED(); | 37 NOTREACHED(); |
| 38 return string16(); | 38 return string16(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 string16 ChromiumBinariesDistribution::GetBrowserAppId() { | 41 string16 ChromiumBinariesDistribution::GetBaseAppId() { |
| 42 NOTREACHED(); | 42 NOTREACHED(); |
| 43 return string16(); | 43 return string16(); |
| 44 } | 44 } |
| 45 | 45 |
| 46 string16 ChromiumBinariesDistribution::GetInstallSubDir() { | 46 string16 ChromiumBinariesDistribution::GetInstallSubDir() { |
| 47 return browser_distribution_->GetInstallSubDir(); | 47 return browser_distribution_->GetInstallSubDir(); |
| 48 } | 48 } |
| 49 | 49 |
| 50 string16 ChromiumBinariesDistribution::GetPublisherName() { | 50 string16 ChromiumBinariesDistribution::GetPublisherName() { |
| 51 NOTREACHED(); | 51 NOTREACHED(); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 int ChromiumBinariesDistribution::GetIconIndex() { | 97 int ChromiumBinariesDistribution::GetIconIndex() { |
| 98 NOTREACHED(); | 98 NOTREACHED(); |
| 99 return 0; | 99 return 0; |
| 100 } | 100 } |
| 101 | 101 |
| 102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { | 102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { |
| 103 NOTREACHED(); | 103 NOTREACHED(); |
| 104 return false; | 104 return false; |
| 105 } | 105 } |
| OLD | NEW |