OLD | NEW |
| (Empty) |
1 /* Copyright (c) 2011 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 | |
6 /** | |
7 * This file defines the <code>PPB_QueryPolicy_Dev</code> interface. | |
8 */ | |
9 label Chrome { | |
10 M14 = 0.1 | |
11 }; | |
12 | |
13 interface PPB_QueryPolicy_Dev { | |
14 /** | |
15 * Subscribes the instance to receive updates via the | |
16 * <code>PPP_PolicyUpdate_Dev</code> interface. | |
17 * | |
18 * The plugin is guaranteed to get one update immediately via the | |
19 * <code>PP_PolicyUpdate_Dev</code> interface. This allows the plugin to | |
20 * retrieve the current policy when subscribing for the first time. | |
21 * | |
22 * @param[in] instance A <code>PP_Instance</code> indentifying one instance | |
23 * of a module. | |
24 */ | |
25 void SubscribeToPolicyUpdates([in] PP_Instance instance); | |
26 }; | |
OLD | NEW |