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

  /external/chromium_org/chrome/browser/
idle_win.cc 13 LASTINPUTINFO last_input_info = {0}; local
14 last_input_info.cbSize = sizeof(LASTINPUTINFO);
16 if (::GetLastInputInfo(&last_input_info)) {
18 if (now < last_input_info.dwTime) {
22 DWORD time_before_wrap = kMaxDWORD - last_input_info.dwTime;
27 current_idle_time = now - last_input_info.dwTime;
  /external/chromium/chrome/browser/
idle_win.cc 17 LASTINPUTINFO last_input_info = {0};
18 last_input_info.cbSize = sizeof(LASTINPUTINFO);
20 if (::GetLastInputInfo(&last_input_info)) {
21 current_idle_time = ::GetTickCount() - last_input_info.dwTime;

Completed in 101 milliseconds