blob: 6d09b7cace500cba9d903f60c3448ca7a95e5764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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.
#ifndef SYNC_UTIL_SESSION_UTILS_ANDROID_H_
#define SYNC_UTIL_SESSION_UTILS_ANDROID_H_
#pragma once
#include <string>
namespace browser_sync {
namespace internal {
// Return the unique identifier of this device.
std::string GetAndroidId();
// Return the end-user-visible name for this device.
std::string GetModel();
// Return if the device is a tablet.
bool IsTabletUi();
} // namespace internal
} // namespace browser_sync
#endif // SYNC_UTIL_SESSION_UTILS_ANDROID_H_
|