X Tutup
Skip to content

Commit 6d1c83a

Browse files
committed
Updated to Chrome version 23.0.1271.95, CEF rev. 931.
Fixed error in ApplicationSettings structure, cefpython.Initialize() may have failed because of it. Changed the behavior of DisplayHandler::OnTitleChange(), if this callback is implemented return True to set window title & icon. Changes in API: wm_SetFocus() renamed to WindowUtils.OnSetFocus(), wm_Size() renamed to WindowUtils.OnSize(), wm_EraseBkgnd() renamed to WindowUtils.OnEraseBackground(), EnforceWindowTitle() renamed to WindowUtils.SetTitle(), EnforceWindowIcon() renamed to WindowUtils.SetIcon(). Examples have been updated. Fixed possible errors in client handler callbacks (Issue 31). Fixed RequestHandler::OnResourceRedirect(). Major changes in directories structure, preparations for cef 3. Added cef 3 binaries.
1 parent 06cbba4 commit 6d1c83a

File tree

274 files changed

+17456
-571
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

274 files changed

+17456
-571
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ class PyBrowser:
184184
global g_pyBrowsers
185185
global g_browserInnerWindows
186186

187-
if g_debug:
188-
print("Browser.CloseBrowser(): topWindowID=%s, innerWindowID=%s" % (self.__topWindowID, self.__innerWindowID))
187+
Debug("Browser.CloseBrowser() called: topWindowID=%s, innerWindowID=%s"
188+
% (self.__topWindowID, self.__innerWindowID))
189189

190190
cdef CefRefPtr[CefBrowser] cefBrowser = GetCefBrowserByInnerWindowID(CheckInnerWindowID(self.__innerWindowID))
191191
g_cefBrowsers.erase(<int>self.__innerWindowID)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
X Tutup