blob: 92ba87b3c57c909aab269170361c2e790716f155 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include "base/android/build_info.h"
namespace syncer {
std::string GetSessionNameInternal() {
base::android::BuildInfo* android_build_info =
base::android::BuildInfo::GetInstance();
return android_build_info->model();
}
} // namespace syncer