OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // musicManagerPrivate. | 5 // musicManagerPrivate. |
6 [nodoc] namespace musicManagerPrivate { | 6 namespace musicManagerPrivate { |
7 | 7 |
8 callback GetDeviceIdCallback = void (DOMString device_id); | 8 callback GetDeviceIdCallback = void (DOMString device_id); |
9 | 9 |
10 interface Functions { | 10 interface Functions { |
11 // Returns an identifier stable across users and reboots. | 11 // Returns an identifier stable across users and reboots. |
12 // | 12 // |
13 // |callback| : Called with the stable identifier value. | 13 // |callback| : Called with the stable identifier value. |
14 static void getDeviceId(GetDeviceIdCallback callback); | 14 static void getDeviceId(GetDeviceIdCallback callback); |
15 }; | 15 }; |
16 }; | 16 }; |
OLD | NEW |