HomeSort by relevance Sort by last modified time
    Searched defs:class_hint (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/desktop_capture/
window_capturer_x11.cc 381 XClassHint class_hint; local
382 Status status = XGetClassHint(display(), window, &class_hint);
389 if (strcmp("gnome-panel", class_hint.res_name) == 0 ||
390 strcmp("desktop_window", class_hint.res_name) == 0) {
393 XFree(class_hint.res_name);
394 XFree(class_hint.res_class);
  /external/webrtc/webrtc/base/
x11windowpicker.cc 749 XClassHint class_hint; local
750 Status s = XGetClassHint(display, window, &class_hint);
759 if (gnome_panel.compare(class_hint.res_name) == 0 ||
760 desktop_window.compare(class_hint.res_name) == 0) {
763 XFree(class_hint.res_name);
764 XFree(class_hint.res_class);

Completed in 111 milliseconds