mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 9cedf753 (#418732)
- Simplify usage of OnBeforePluginLoad (issue #2015) - Switch crash reporting from crashpad to breakpad on Windows and OS X. Adds a new chrome_elf.dll dependency on Windows (issue #1995) - Remove CefTextfield::GetPlaceholderTextColor() method which is no longer supported by Chromium.
This commit is contained in:
@ -495,22 +495,6 @@ void CEF_CALLBACK textfield_set_placeholder_text_color(
|
||||
color);
|
||||
}
|
||||
|
||||
cef_color_t CEF_CALLBACK textfield_get_placeholder_text_color(
|
||||
struct _cef_textfield_t* self) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
if (!self)
|
||||
return 0;
|
||||
|
||||
// Execute
|
||||
cef_color_t _retval = CefTextfieldCppToC::Get(self)->GetPlaceholderTextColor(
|
||||
);
|
||||
|
||||
// Return type: simple
|
||||
return _retval;
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_set_accessible_name(struct _cef_textfield_t* self,
|
||||
const cef_string_t* name) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -1362,8 +1346,6 @@ CefTextfieldCppToC::CefTextfieldCppToC() {
|
||||
GetStruct()->get_placeholder_text = textfield_get_placeholder_text;
|
||||
GetStruct()->set_placeholder_text_color =
|
||||
textfield_set_placeholder_text_color;
|
||||
GetStruct()->get_placeholder_text_color =
|
||||
textfield_get_placeholder_text_color;
|
||||
GetStruct()->set_accessible_name = textfield_set_accessible_name;
|
||||
GetStruct()->base.as_browser_view = textfield_as_browser_view;
|
||||
GetStruct()->base.as_button = textfield_as_button;
|
||||
|
Reference in New Issue
Block a user