Home
last modified time | relevance | path

Searched refs:regionsList (Results 1 – 4 of 4) sorted by relevance

/third_party/cef/libcef_dll/ctocpp/
Ddrag_handler_ctocpp.cc76 cef_draggable_region_t* regionsList = NULL; in OnDraggableRegionsChanged() local
78 regionsList = new cef_draggable_region_t[regionsCount]; in OnDraggableRegionsChanged()
79 DCHECK(regionsList); in OnDraggableRegionsChanged()
80 if (regionsList) { in OnDraggableRegionsChanged()
82 regionsList[i] = regions[i]; in OnDraggableRegionsChanged()
90 regionsCount, regionsList); in OnDraggableRegionsChanged()
93 if (regionsList) in OnDraggableRegionsChanged()
94 delete[] regionsList; in OnDraggableRegionsChanged()
/third_party/cef/libcef_dll/cpptoc/
Ddrag_handler_cpptoc.cc80 std::vector<CefDraggableRegion> regionsList; in drag_handler_on_draggable_regions_changed() local
84 regionsList.push_back(regionsVal); in drag_handler_on_draggable_regions_changed()
91 regionsList); in drag_handler_on_draggable_regions_changed()
/third_party/cef/libcef_dll/ctocpp/views/
Dwindow_ctocpp.cc520 cef_draggable_region_t* regionsList = NULL; in SetDraggableRegions() local
522 regionsList = new cef_draggable_region_t[regionsCount]; in SetDraggableRegions()
523 DCHECK(regionsList); in SetDraggableRegions()
524 if (regionsList) { in SetDraggableRegions()
526 regionsList[i] = regions[i]; in SetDraggableRegions()
532 _struct->set_draggable_regions(_struct, regionsCount, regionsList); in SetDraggableRegions()
535 if (regionsList) in SetDraggableRegions()
536 delete[] regionsList; in SetDraggableRegions()
/third_party/cef/libcef_dll/cpptoc/views/
Dwindow_cpptoc.cc532 std::vector<CefDraggableRegion> regionsList; in window_set_draggable_regions() local
536 regionsList.push_back(regionsVal); in window_set_draggable_regions()
541 CefWindowCppToC::Get(self)->SetDraggableRegions(regionsList); in window_set_draggable_regions()