Skip to content

Commit

Permalink
Update to Chromium 57.0.2987.133 on Linux PART 2 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
cztomczak committed Apr 20, 2017
1 parent df798e5 commit c07c099
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/compile_time_constants.pxi
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file was generated by setup.py
DEF UNAME_SYSNAME = "Linux"
DEF PY_MAJOR_VERSION = 3
DEF PY_MAJOR_VERSION = 2
2 changes: 1 addition & 1 deletion src/subprocess/cefpython_app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void CefPythonApp::OnBeforeCommandLineProcessing(
}

void CefPythonApp::OnRegisterCustomSchemes(
CefRefPtr<CefSchemeRegistrar> registrar) {
CefRawPtr<CefSchemeRegistrar> registrar) {
}

CefRefPtr<CefResourceBundleHandler> CefPythonApp::GetResourceBundleHandler() {
Expand Down
2 changes: 1 addition & 1 deletion src/subprocess/cefpython_app.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class CefPythonApp :
CefRefPtr<CefCommandLine> command_line) override;

void OnRegisterCustomSchemes(
CefRefPtr<CefSchemeRegistrar> registrar) override;
CefRawPtr<CefSchemeRegistrar> registrar) override;

CefRefPtr<CefResourceBundleHandler> GetResourceBundleHandler()
override;
Expand Down
20 changes: 10 additions & 10 deletions src/version/cef_version_linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
#ifndef CEF_INCLUDE_CEF_VERSION_H_
#define CEF_INCLUDE_CEF_VERSION_H_

#define CEF_VERSION "3.2924.1575.g97389a9"
#define CEF_VERSION "3.2987.1601.gf035232"
#define CEF_VERSION_MAJOR 3
#define CEF_COMMIT_NUMBER 1575
#define CEF_COMMIT_HASH "97389a92ee2309ded830338d6afd61ba109d31d8"
#define CEF_COMMIT_NUMBER 1601
#define CEF_COMMIT_HASH "f035232c082f837d2b85bd7821a93a54fc742775"
#define COPYRIGHT_YEAR 2017

#define CHROME_VERSION_MAJOR 56
#define CHROME_VERSION_MAJOR 57
#define CHROME_VERSION_MINOR 0
#define CHROME_VERSION_BUILD 2924
#define CHROME_VERSION_PATCH 76
#define CHROME_VERSION_BUILD 2987
#define CHROME_VERSION_PATCH 133

#define DO_MAKE_STRING(p) #p
#define MAKE_STRING(p) DO_MAKE_STRING(p)
Expand All @@ -63,13 +63,13 @@ extern "C" {
// universal hash value will change if any platform is affected whereas the
// platform hash values will change only if that particular platform is
// affected.
#define CEF_API_HASH_UNIVERSAL "66de193ba22e1d92a99bb29d60f3107709aeefda"
#define CEF_API_HASH_UNIVERSAL "b0a24e3e202f3d8b72f2fbc1ebc5864f96ec16ae"
#if defined(OS_WIN)
#define CEF_API_HASH_PLATFORM "8055740cd08db66cefe838a826dc90806fadfb33"
#define CEF_API_HASH_PLATFORM "1c6a27f840ac87c8c971350c907edbe2c5fa0387"
#elif defined(OS_MACOSX)
#define CEF_API_HASH_PLATFORM "12d8ab423df369b68d37c3667123a1812bc0d345"
#define CEF_API_HASH_PLATFORM "1567db600ee83cc2a59bb8c17ca416d11a7c9b8a"
#elif defined(OS_LINUX)
#define CEF_API_HASH_PLATFORM "86ab23c0d7dafbdff7f66764cf8dac5ec1712af4"
#define CEF_API_HASH_PLATFORM "1f9f9e15bf7cf13de2557ddd411dfc9f694503b0"
#endif

// Returns CEF version information for the libcef library. The |entry|
Expand Down

0 comments on commit c07c099

Please sign in to comment.