Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: components/sync/base/get_session_name_linux.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "sync/util/get_session_name_linux.h" 5 #include "components/sync/base/get_session_name_linux.h"
6 6
7 #include <limits.h> // for HOST_NAME_MAX 7 #include <limits.h> // for HOST_NAME_MAX
8 #include <unistd.h> // for gethostname() 8 #include <unistd.h> // for gethostname()
9 9
10 #include "base/linux_util.h" 10 #include "base/linux_util.h"
11 11
12 namespace syncer { 12 namespace syncer {
13 namespace internal { 13 namespace internal {
14 14
15 std::string GetHostname() { 15 std::string GetHostname() {
16 char hostname[HOST_NAME_MAX]; 16 char hostname[HOST_NAME_MAX];
17 if (gethostname(hostname, HOST_NAME_MAX) == 0) // Success. 17 if (gethostname(hostname, HOST_NAME_MAX) == 0) // Success.
18 return hostname; 18 return hostname;
19 return base::GetLinuxDistro(); 19 return base::GetLinuxDistro();
20 } 20 }
21 21
22 } // namespace internal 22 } // namespace internal
23 } // namespace syncer 23 } // namespace syncer
24
OLDNEW
« no previous file with comments | « components/sync/base/get_session_name_linux.h ('k') | components/sync/base/get_session_name_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698