| 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 #include "sync/util/get_session_name_win.h" | 5 #include "components/sync/base/get_session_name_win.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 | 12 |
| 13 namespace syncer { | 13 namespace syncer { |
| 14 namespace internal { | 14 namespace internal { |
| 15 | 15 |
| 16 std::string GetComputerName() { | 16 std::string GetComputerName() { |
| 17 wchar_t computer_name[MAX_COMPUTERNAME_LENGTH + 1] = {0}; | 17 wchar_t computer_name[MAX_COMPUTERNAME_LENGTH + 1] = {0}; |
| 18 DWORD size = arraysize(computer_name); | 18 DWORD size = arraysize(computer_name); |
| 19 if (::GetComputerNameW(computer_name, &size)) { | 19 if (::GetComputerNameW(computer_name, &size)) { |
| 20 std::string result; | 20 std::string result; |
| 21 bool conversion_successful = base::WideToUTF8(computer_name, size, &result); | 21 bool conversion_successful = base::WideToUTF8(computer_name, size, &result); |
| 22 DCHECK(conversion_successful); | 22 DCHECK(conversion_successful); |
| 23 return result; | 23 return result; |
| 24 } | 24 } |
| 25 return std::string(); | 25 return std::string(); |
| 26 } | 26 } |
| 27 | 27 |
| 28 } // namespace internal | 28 } // namespace internal |
| 29 } // namespace syncer | 29 } // namespace syncer |
| OLD | NEW |