OLD | NEW |
1 /* Copyright (c) 2011 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 /* This file contains PPB_PDF interface. */ | 6 /* This file contains PPB_PDF interface. */ |
7 | 7 |
8 enum PP_ResourceString{ | 8 enum PP_ResourceString{ |
9 PP_RESOURCESTRING_PDFGETPASSWORD = 0, | 9 PP_RESOURCESTRING_PDFGETPASSWORD = 0, |
10 PP_RESOURCESTRING_PDFLOADING = 1, | 10 PP_RESOURCESTRING_PDFLOADING = 1, |
11 PP_RESOURCESTRING_PDFLOAD_FAILED = 2 | 11 PP_RESOURCESTRING_PDFLOAD_FAILED = 2 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 [in] int32_t count); | 132 [in] int32_t count); |
133 | 133 |
134 /* Notifies the browser that the given action has been performed. */ | 134 /* Notifies the browser that the given action has been performed. */ |
135 void UserMetricsRecordAction( | 135 void UserMetricsRecordAction( |
136 [in] PP_Var action); | 136 [in] PP_Var action); |
137 | 137 |
138 /* Notifies the browser that the PDF has an unsupported feature. */ | 138 /* Notifies the browser that the PDF has an unsupported feature. */ |
139 void HasUnsupportedFeature( | 139 void HasUnsupportedFeature( |
140 [in] PP_Instance instance); | 140 [in] PP_Instance instance); |
141 }; | 141 }; |
OLD | NEW |