Skip to content

Commit d5cc347

Browse files
committed
Remove Frame.GetProperty/SetProperty deprecated methods from API docs.
This methods are not implemented. I guess they are remainings from CEF 1 which ran using single process mode and getting/setting properties worked synchronously. But in CEF 3 which runs in multi-process mode you can do this only asynchronusly, you can use already implemented js<>py communication layer for that.
1 parent 7a0cae6 commit d5cc347

File tree

3 files changed

+0
-27
lines changed

3 files changed

+0
-27
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,6 @@ Additional information for v31.2 release:
497497
* [GetBrowserIdentifier](api/Frame.md#getbrowseridentifier)
498498
* [GetName](api/Frame.md#getname)
499499
* [GetParent](api/Frame.md#getparent)
500-
* [GetProperty](api/Frame.md#getproperty)
501500
* [GetSource](api/Frame.md#getsource)
502501
* [GetText](api/Frame.md#gettext)
503502
* [GetUrl](api/Frame.md#geturl)
@@ -509,7 +508,6 @@ Additional information for v31.2 release:
509508
* [Paste](api/Frame.md#paste)
510509
* [Redo](api/Frame.md#redo)
511510
* [SelectAll](api/Frame.md#selectall)
512-
* [SetProperty](api/Frame.md#setproperty)
513511
* [Undo](api/Frame.md#undo)
514512
* [ViewSource](api/Frame.md#viewsource)
515513
* [Image (object)](api/Image.md#image-object)

api/API-index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@
237237
* [GetBrowserIdentifier](Frame.md#getbrowseridentifier)
238238
* [GetName](Frame.md#getname)
239239
* [GetParent](Frame.md#getparent)
240-
* [GetProperty](Frame.md#getproperty)
241240
* [GetSource](Frame.md#getsource)
242241
* [GetText](Frame.md#gettext)
243242
* [GetUrl](Frame.md#geturl)
@@ -249,7 +248,6 @@
249248
* [Paste](Frame.md#paste)
250249
* [Redo](Frame.md#redo)
251250
* [SelectAll](Frame.md#selectall)
252-
* [SetProperty](Frame.md#setproperty)
253251
* [Undo](Frame.md#undo)
254252
* [ViewSource](Frame.md#viewsource)
255253
* [Image (object)](Image.md#image-object)

api/Frame.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Table of contents:
3030
* [GetBrowserIdentifier](#getbrowseridentifier)
3131
* [GetName](#getname)
3232
* [GetParent](#getparent)
33-
* [GetProperty](#getproperty)
3433
* [GetSource](#getsource)
3534
* [GetText](#gettext)
3635
* [GetUrl](#geturl)
@@ -42,7 +41,6 @@ Table of contents:
4241
* [Paste](#paste)
4342
* [Redo](#redo)
4443
* [SelectAll](#selectall)
45-
* [SetProperty](#setproperty)
4644
* [Undo](#undo)
4745
* [ViewSource](#viewsource)
4846

@@ -157,16 +155,6 @@ Returns the name for this frame. If the frame has an assigned name (for example,
157155
Returns the parent of this frame or None if this is the main (top-level) frame. This method should only be called on the UI thread.
158156

159157

160-
### GetProperty
161-
162-
| Parameter | Type |
163-
| --- | --- |
164-
| name | string |
165-
| __Return__ | void |
166-
167-
Get property of the window object in javascript. For a list of allowed returned values see [JavascriptBindings](JavascriptBindings.md).IsValueAllowed() - except function, method and instance. If you try to get some javascript native property that its value cannot be converted to the python types above, you will get an error.
168-
169-
170158
### GetSource
171159

172160
| Parameter | Type |
@@ -281,17 +269,6 @@ Execute redo in this frame.
281269
Execute select all in this frame.
282270

283271

284-
### SetProperty
285-
286-
| Parameter | Type |
287-
| --- | --- |
288-
| name | string |
289-
| value | mixed |
290-
| __Return__ | void |
291-
292-
Set property of the window object in javascript. You can also set properties before browser is created by using [JavascriptBindings](JavascriptBindings.md).SetProperty(). For a list of allowed types for 'mixed' see [JavascriptBindings](JavascriptBindings.md).IsValueAllowed() (except instance).
293-
294-
295272
### Undo
296273

297274
| | |

0 commit comments

Comments
 (0)