| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/common/chrome_version_info.h" | 5 #include "chrome/common/chrome_version_info.h" |
| 6 | 6 |
| 7 namespace chrome { | 7 namespace chrome { |
| 8 | 8 |
| 9 // static | 9 // static |
| 10 std::string VersionInfo::GetVersionStringModifier() { | 10 std::string VersionInfo::GetVersionStringModifier() { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 return CHANNEL_DEV; | 41 return CHANNEL_DEV; |
| 42 } else if (channel == "canary") { | 42 } else if (channel == "canary") { |
| 43 return CHANNEL_CANARY; | 43 return CHANNEL_CANARY; |
| 44 } | 44 } |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 return CHANNEL_UNKNOWN; | 47 return CHANNEL_UNKNOWN; |
| 48 } | 48 } |
| 49 | 49 |
| 50 } // namespace chrome | 50 } // namespace chrome |
| OLD | NEW |