OLD | NEW |
1 // Copyright (c) 2011 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 defines implementation of GoogleChromeSxSDistribution. | 5 // This file defines implementation of GoogleChromeSxSDistribution. |
6 | 6 |
7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" | 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 | 11 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 int GoogleChromeSxSDistribution::GetIconIndex() { | 56 int GoogleChromeSxSDistribution::GetIconIndex() { |
57 return kSxSIconIndex; | 57 return kSxSIconIndex; |
58 } | 58 } |
59 | 59 |
60 bool GoogleChromeSxSDistribution::GetChromeChannel(std::wstring* channel) { | 60 bool GoogleChromeSxSDistribution::GetChromeChannel(std::wstring* channel) { |
61 *channel = kChannelName; | 61 *channel = kChannelName; |
62 return true; | 62 return true; |
63 } | 63 } |
64 | 64 |
| 65 bool GoogleChromeSxSDistribution::GetDelegateExecuteHandlerData( |
| 66 string16* handler_class_uuid, |
| 67 string16* type_lib_uuid, |
| 68 string16* type_lib_version, |
| 69 string16* interface_uuid) { |
| 70 return false; |
| 71 } |
| 72 |
65 std::wstring GoogleChromeSxSDistribution::ChannelName() { | 73 std::wstring GoogleChromeSxSDistribution::ChannelName() { |
66 return kChannelName; | 74 return kChannelName; |
67 } | 75 } |
OLD | NEW |