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
3// found in the LICENSE file.
4
5#include "chrome/browser/extensions/api/music_manager_private/device_id.h"
6
7#include "chromeos/cryptohome/system_salt_getter.h"
8
9namespace extensions {
10namespace api {
11
12// static
13void DeviceId::GetRawDeviceId(const IdCallback& callback) {
14  chromeos::SystemSaltGetter::Get()->GetSystemSalt(callback);
15}
16
17}  // namespace api
18}  // namespace extensions
19