Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / extensions / api / music_manager_private / device_id_chromeos.cc
blobf49e5133167250ac16f6610c7b10d511b251500d
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.
5 #include "chrome/browser/extensions/api/music_manager_private/device_id.h"
7 #include "chromeos/cryptohome/system_salt_getter.h"
9 namespace extensions {
10 namespace api {
12 // static
13 void DeviceId::GetRawDeviceId(const IdCallback& callback) {
14 chromeos::SystemSaltGetter::Get()->GetSystemSalt(callback);
17 } // namespace api
18 } // namespace extensions