| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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>PPB_Flash</code> interface. | 7 * This file contains the <code>PPB_Flash</code> interface. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 label Chrome { | 10 label Chrome { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 /** | 110 /** |
| 111 * Returns whether the given rectangle (in the plugin) is topmost, i.e., above | 111 * Returns whether the given rectangle (in the plugin) is topmost, i.e., above |
| 112 * all other web content. | 112 * all other web content. |
| 113 */ | 113 */ |
| 114 [version=12.1] | 114 [version=12.1] |
| 115 PP_Bool IsRectTopmost( | 115 PP_Bool IsRectTopmost( |
| 116 [in] PP_Instance instance, | 116 [in] PP_Instance instance, |
| 117 [in] PP_Rect rect); | 117 [in] PP_Rect rect); |
| 118 | 118 |
| 119 /** | 119 /** |
| 120 * Invokes printing for the given instance. | 120 * Does nothing, deprecated. See PPB_Flash_Print. |
| 121 */ | 121 */ |
| 122 [version=12.1] | 122 [version=12.1] |
| 123 int32_t InvokePrinting( | 123 int32_t InvokePrinting( |
| 124 [in] PP_Instance instance); | 124 [in] PP_Instance instance); |
| 125 | 125 |
| 126 /** | 126 /** |
| 127 * Indicates that there's activity and, e.g., the screensaver shouldn't kick | 127 * Indicates that there's activity and, e.g., the screensaver shouldn't kick |
| 128 * in. | 128 * in. |
| 129 */ | 129 */ |
| 130 [version=12.1] | 130 [version=12.1] |
| (...skipping 28 matching lines...) Expand all Loading... |
| 159 struct PP_Var (*GetProxyForURL)(PP_Instance instance, const char* url); | 159 struct PP_Var (*GetProxyForURL)(PP_Instance instance, const char* url); |
| 160 int32_t (*Navigate)(PP_Resource request_info, | 160 int32_t (*Navigate)(PP_Resource request_info, |
| 161 const char* target, | 161 const char* target, |
| 162 bool from_user_action); | 162 bool from_user_action); |
| 163 void (*RunMessageLoop)(PP_Instance instance); | 163 void (*RunMessageLoop)(PP_Instance instance); |
| 164 void (*QuitMessageLoop)(PP_Instance instance); | 164 void (*QuitMessageLoop)(PP_Instance instance); |
| 165 double (*GetLocalTimeZoneOffset)(PP_Instance instance, PP_Time t); | 165 double (*GetLocalTimeZoneOffset)(PP_Instance instance, PP_Time t); |
| 166 struct PP_Var (*GetCommandLineArgs)(PP_Module module); | 166 struct PP_Var (*GetCommandLineArgs)(PP_Module module); |
| 167 }; | 167 }; |
| 168 #endinl | 168 #endinl |
| OLD | NEW |