-
-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement external message pump, still experimental (#246).
Add new option ApplicationSettings.external_message_pump. This is experimental, actually it makes app slower, reported issue in upstream. Add cefpython.GetAppSetting() func. Show CEF Python version in unit test runner.
- Loading branch information
Showing
25 changed files
with
1,404 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright (c) 2016 CEF Python. See the Authors and License files. | ||
|
||
cdef extern from "include/base/cef_scoped_ptr.h": | ||
cdef cppclass scoped_ptr[T]: | ||
scoped_ptr() | ||
# noinspection PyUnresolvedReferences | ||
scoped_ptr(T* p) | ||
# noinspection PyUnresolvedReferences | ||
void reset() | ||
# noinspection PyUnresolvedReferences | ||
T* get() | ||
# noinspection PyUnresolvedReferences | ||
scoped_ptr[T]& Assign "operator="(scoped_ptr[T]& p) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2016 CEF Python. See the Authors and License files. | ||
|
||
from cef_scoped_ptr cimport scoped_ptr | ||
|
||
cdef extern from \ | ||
"subprocess/main_message_loop/main_message_loop_external_pump.h": | ||
|
||
cdef cppclass MainMessageLoopExternalPump: | ||
@staticmethod | ||
scoped_ptr[MainMessageLoopExternalPump] Create() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.