blob: a6b7962f3962127fafcdc08581a89a875d30d123 [file] [log] [blame]
// Copyright 2013 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 "chrome/browser/extensions/api/music_manager_private/device_id.h"
#include "chromeos/cryptohome/system_salt_getter.h"
namespace extensions {
namespace api {
// ChromeOS: Use the System Salt.
/* static */
void DeviceId::GetMachineId(const IdCallback& callback) {
chromeos::SystemSaltGetter::Get()->GetSystemSalt(callback);
}
} // namespace api
} // namespace extensions