| 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 #include "chrome/installer/util/app_registration_data.h" | 10 #include "chrome/installer/util/app_registration_data.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) { | 99 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) { |
| 100 NOTREACHED(); | 100 NOTREACHED(); |
| 101 return 0; | 101 return 0; |
| 102 } | 102 } |
| 103 | 103 |
| 104 bool ChromiumBinariesDistribution::GetChromeChannel(base::string16* channel) { | 104 bool ChromiumBinariesDistribution::GetChromeChannel(base::string16* channel) { |
| 105 NOTREACHED(); | 105 NOTREACHED(); |
| 106 return false; | 106 return false; |
| 107 } | 107 } |
| 108 | 108 |
| 109 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid( | 109 base::string16 ChromiumBinariesDistribution::GetCommandExecuteImplClsid() { |
| 110 base::string16* handler_class_uuid) { | 110 return base::string16(); |
| 111 return false; | |
| 112 } | 111 } |
| OLD | NEW |