| 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 | 5 |
| 6 /** | 6 /** |
| 7 * This file defines the <code>PPB_NetworkProxy</code> interface. | 7 * This file defines the <code>PPB_NetworkProxy</code> interface. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 [generate_thunk] | 10 [generate_thunk] |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon | 44 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon |
| 45 * completion. | 45 * completion. |
| 46 * | 46 * |
| 47 * @return An int32_t containing an error code from <code>pp_errors.h</code>. | 47 * @return An int32_t containing an error code from <code>pp_errors.h</code>. |
| 48 */ | 48 */ |
| 49 int32_t GetProxyForURL([in] PP_Instance instance, | 49 int32_t GetProxyForURL([in] PP_Instance instance, |
| 50 [in] PP_Var url, | 50 [in] PP_Var url, |
| 51 [out] PP_Var proxy_string, | 51 [out] PP_Var proxy_string, |
| 52 [in] PP_CompletionCallback callback); | 52 [in] PP_CompletionCallback callback); |
| 53 }; | 53 }; |
| OLD | NEW |