File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131* .generated
3232
3333cython_debug /
34+
35+ cefpython_py27.pyd
36+ cefpython_py32.pyd
37+ cefpython_py27.so
38+ cefpython_py32.so
Original file line number Diff line number Diff line change 11Chromium/CEF branch:
2- 1364
2+ 1453
33Chromium release url:
4- http://src.chromium.org/svn/releases/25 .0.1364.172
4+ http://src.chromium.org/svn/releases/27 .0.1453.93
55CEF revision:
6- 1248
6+ 1268
77CEF repository url:
8- http://chromiumembedded.googlecode.com/svn/branches/1364 /cef1@1248
8+ http://chromiumembedded.googlecode.com/svn/branches/1453 /cef1@1268
Original file line number Diff line number Diff line change 3535#ifndef CEF_INCLUDE_CEF_VERSION_H_
3636#define CEF_INCLUDE_CEF_VERSION_H_
3737
38- #define CEF_REVISION 1123
38+ #define CEF_REVISION 1268
3939#define COPYRIGHT_YEAR 2013
4040
41- #define CHROME_VERSION_MAJOR 25
41+ #define CHROME_VERSION_MAJOR 27
4242#define CHROME_VERSION_MINOR 0
43- #define CHROME_VERSION_BUILD 1364
44- #define CHROME_VERSION_PATCH 152
43+ #define CHROME_VERSION_BUILD 1453
44+ #define CHROME_VERSION_PATCH 93
4545
4646#define DO_MAKE_STRING (p ) #p
4747#define MAKE_STRING (p ) DO_MAKE_STRING(p)
Original file line number Diff line number Diff line change @@ -471,11 +471,6 @@ typedef struct _cef_browser_settings_t {
471471 ///
472472 bool accelerated_2d_canvas_disabled ;
473473
474- ///
475- // Set to true (1) to disable accelerated painting.
476- ///
477- bool accelerated_painting_disabled ;
478-
479474 ///
480475 // Set to true (1) to disable accelerated filters.
481476 ///
Original file line number Diff line number Diff line change @@ -403,7 +403,6 @@ struct CefBrowserSettingsTraits {
403403 target->accelerated_video_disabled = src->accelerated_video_disabled ;
404404 target->accelerated_2d_canvas_disabled =
405405 src->accelerated_2d_canvas_disabled ;
406- target->accelerated_painting_disabled = src->accelerated_painting_disabled ;
407406 target->accelerated_filters_disabled = src->accelerated_filters_disabled ;
408407 target->accelerated_plugins_disabled = src->accelerated_plugins_disabled ;
409408 target->developer_tools_disabled = src->developer_tools_disabled ;
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ def GetModuleDirectory():
9191 "accelerated_compositing_enabled" : False ,
9292 "accelerated_filters_disabled" : False ,
9393 "accelerated_layers_disabled" : False ,
94- "accelerated_painting_disabled" : False ,
9594 "accelerated_plugins_disabled" : False ,
9695 "accelerated_video_disabled" : False ,
9796 "animation_frame_rate" : 0 ,
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ def GetModuleDirectory():
9191 "accelerated_compositing_enabled" : False ,
9292 "accelerated_filters_disabled" : False ,
9393 "accelerated_layers_disabled" : False ,
94- "accelerated_painting_disabled" : False ,
9594 "accelerated_plugins_disabled" : False ,
9695 "accelerated_video_disabled" : False ,
9796 "animation_frame_rate" : 0 ,
Original file line number Diff line number Diff line change @@ -65,11 +65,11 @@ def main():
6565 print ("Copying binaries to package dir" )
6666 ret = os .system ("cp -rf " + binaries_dir + "/* " + package_dir )
6767 assert ret == 0
68-
68+
6969 os .chdir (package_dir )
7070 print ("Removing .log files from the package dir" )
7171 ret = os .system ("rm *.log" )
72- assert ret == 0
72+ # assert ret == 0 - if there are no .log files this assert would fail.
7373 os .chdir (installer_dir )
7474
7575 print ("Creating __init__.py from template" )
Original file line number Diff line number Diff line change @@ -43,18 +43,18 @@ def CompileTimeConstants():
4343 ["cefpython.pyx" ],
4444
4545 cython_directives = {
46- "c_string_type" : C_STRING_TYPE ,
46+ "c_string_type" : C_STRING_TYPE ,
4747 "c_string_encoding" : C_STRING_ENCODING ,
4848 },
4949
5050 language = 'c++' ,
5151 include_dirs = [
52- r'./../' ,
53- r'./../../' ,
54- r'./../../../' ,
52+ r'./../' ,
53+ r'./../../' ,
54+ r'./../../../' ,
5555 r'./../../../cython_includes/' ,
56- '/usr/include/gtk-2.0' ,
57- '/usr/include/glib-2.0' ,
56+ '/usr/include/gtk-2.0' ,
57+ '/usr/include/glib-2.0' ,
5858 '/usr/lib/i386-linux-gnu/gtk-2.0/include' ,
5959 '/usr/lib/i386-linux-gnu/glib-2.0/include' ,
6060 '/usr/include/cairo' ,
@@ -78,7 +78,7 @@ def CompileTimeConstants():
7878 'cef_dll_wrapper' ,
7979 'v8function_handler' ,
8080 'client_handler' ,
81- 'cpp_utils'
81+ 'cpp_utils'
8282 ],
8383
8484 # Loading libcef.so will only work when running scripts from the same
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ def GetModuleDirectory():
9191 "accelerated_compositing_enabled" : False ,
9292 "accelerated_filters_disabled" : False ,
9393 "accelerated_layers_disabled" : False ,
94- "accelerated_painting_disabled" : False ,
9594 "accelerated_plugins_disabled" : False ,
9695 "accelerated_video_disabled" : False ,
9796 "animation_frame_rate" : 0 ,
You can’t perform that action at this time.
0 commit comments