| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cloud_print/service/win/service_utils.h" | 5 #include "cloud_print/service/win/service_utils.h" |
| 6 #include "google_apis/gaia/gaia_switches.h" | 6 #include "google_apis/gaia/gaia_switches.h" |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <security.h> // NOLINT | 9 #include <security.h> // NOLINT |
| 10 | 10 |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 14 | 14 |
| 15 string16 GetLocalComputerName() { | 15 base::string16 GetLocalComputerName() { |
| 16 DWORD size = 0; | 16 DWORD size = 0; |
| 17 string16 result; | 17 base::string16 result; |
| 18 ::GetComputerName(NULL, &size); | 18 ::GetComputerName(NULL, &size); |
| 19 result.resize(size); | 19 result.resize(size); |
| 20 if (result.empty()) | 20 if (result.empty()) |
| 21 return result; | 21 return result; |
| 22 if (!::GetComputerName(&result[0], &size)) | 22 if (!::GetComputerName(&result[0], &size)) |
| 23 return string16(); | 23 return base::string16(); |
| 24 result.resize(size); | 24 result.resize(size); |
| 25 return result; | 25 return result; |
| 26 } | 26 } |
| 27 | 27 |
| 28 string16 ReplaceLocalHostInName(const string16& user_name) { | 28 base::string16 ReplaceLocalHostInName(const base::string16& user_name) { |
| 29 static const wchar_t kLocalDomain[] = L".\\"; | 29 static const wchar_t kLocalDomain[] = L".\\"; |
| 30 if (StartsWith(user_name, kLocalDomain, true)) { | 30 if (StartsWith(user_name, kLocalDomain, true)) { |
| 31 return GetLocalComputerName() + | 31 return GetLocalComputerName() + |
| 32 user_name.substr(arraysize(kLocalDomain) - 2); | 32 user_name.substr(arraysize(kLocalDomain) - 2); |
| 33 } | 33 } |
| 34 return user_name; | 34 return user_name; |
| 35 } | 35 } |
| 36 | 36 |
| 37 string16 GetCurrentUserName() { | 37 base::string16 GetCurrentUserName() { |
| 38 ULONG size = 0; | 38 ULONG size = 0; |
| 39 string16 result; | 39 base::string16 result; |
| 40 ::GetUserNameEx(::NameSamCompatible, NULL, &size); | 40 ::GetUserNameEx(::NameSamCompatible, NULL, &size); |
| 41 result.resize(size); | 41 result.resize(size); |
| 42 if (result.empty()) | 42 if (result.empty()) |
| 43 return result; | 43 return result; |
| 44 if (!::GetUserNameEx(::NameSamCompatible, &result[0], &size)) | 44 if (!::GetUserNameEx(::NameSamCompatible, &result[0], &size)) |
| 45 return string16(); | 45 return base::string16(); |
| 46 result.resize(size); | 46 result.resize(size); |
| 47 return result; | 47 return result; |
| 48 } | 48 } |
| 49 | 49 |
| 50 void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination) { | 50 void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination) { |
| 51 static const char* const kSwitchesToCopy[] = { | 51 static const char* const kSwitchesToCopy[] = { |
| 52 switches::kCloudPrintServiceURL, | 52 switches::kCloudPrintServiceURL, |
| 53 switches::kEnableLogging, | 53 switches::kEnableLogging, |
| 54 switches::kIgnoreUrlFetcherCertRequests, | 54 switches::kIgnoreUrlFetcherCertRequests, |
| 55 switches::kLsoUrl, | 55 switches::kLsoUrl, |
| 56 switches::kV, | 56 switches::kV, |
| 57 }; | 57 }; |
| 58 destination->CopySwitchesFrom(*CommandLine::ForCurrentProcess(), | 58 destination->CopySwitchesFrom(*CommandLine::ForCurrentProcess(), |
| 59 kSwitchesToCopy, | 59 kSwitchesToCopy, |
| 60 arraysize(kSwitchesToCopy)); | 60 arraysize(kSwitchesToCopy)); |
| 61 } | 61 } |
| 62 | 62 |
| OLD | NEW |