| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright 2012 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 | 5 |
| 6 /** | 6 /** |
| 7 * This file contains the <code>PPP_Flash_BrowserOperations</code> interface. | 7 * This file contains the <code>PPP_Flash_BrowserOperations</code> interface. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 label Chrome { | 10 label Chrome { |
| 11 M20 = 1.0, | 11 M20 = 1.0, |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 [out] str_t[] sites); | 159 [out] str_t[] sites); |
| 160 | 160 |
| 161 /** | 161 /** |
| 162 * Frees the list of sites returned by GetSitesWithData. | 162 * Frees the list of sites returned by GetSitesWithData. |
| 163 * | 163 * |
| 164 * @param[in] sites A NULL-terminated array of strings. | 164 * @param[in] sites A NULL-terminated array of strings. |
| 165 */ | 165 */ |
| 166 [version=1.3] | 166 [version=1.3] |
| 167 void FreeSiteList([inout] str_t[] sites); | 167 void FreeSiteList([inout] str_t[] sites); |
| 168 }; | 168 }; |
| OLD | NEW |