| 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 //Pickup file for readability review. |
| 6 |
| 5 #include "chrome/installer/util/util_constants.h" | 7 #include "chrome/installer/util/util_constants.h" |
| 6 | 8 |
| 7 namespace installer { | 9 namespace installer { |
| 8 | 10 |
| 9 namespace switches { | 11 namespace switches { |
| 10 | 12 |
| 11 // Whether to set Chrome to launch at computer startup. | 13 // Whether to set Chrome to launch at computer startup. |
| 12 const char kAutoLaunchChrome[] = "auto-launch-chrome"; | 14 const char kAutoLaunchChrome[] = "auto-launch-chrome"; |
| 13 | 15 |
| 14 // Install Chrome. | 16 // Install Chrome. |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 // Chrome channel display names. | 223 // Chrome channel display names. |
| 222 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 224 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
| 223 const wchar_t kChromeChannelCanary[] = L"canary"; | 225 const wchar_t kChromeChannelCanary[] = L"canary"; |
| 224 const wchar_t kChromeChannelDev[] = L"dev"; | 226 const wchar_t kChromeChannelDev[] = L"dev"; |
| 225 const wchar_t kChromeChannelBeta[] = L"beta"; | 227 const wchar_t kChromeChannelBeta[] = L"beta"; |
| 226 const wchar_t kChromeChannelStable[] = L""; | 228 const wchar_t kChromeChannelStable[] = L""; |
| 227 | 229 |
| 228 const size_t kMaxAppModelIdLength = 64U; | 230 const size_t kMaxAppModelIdLength = 64U; |
| 229 | 231 |
| 230 } // namespace installer | 232 } // namespace installer |
| OLD | NEW |