root/chrome/browser/extensions/api/music_manager_private/device_id_chromeos.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. GetRawDeviceId

// 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 {

// static
void DeviceId::GetRawDeviceId(const IdCallback& callback) {
  chromeos::SystemSaltGetter::Get()->GetSystemSalt(callback);
}

}  // namespace api
}  // namespace extensions

/* [<][>][^][v][top][bottom][index][help] */