HomeSort by relevance Sort by last modified time
    Searched refs:m_lastProgressNotificationTimeMS (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.cpp 75 , m_lastProgressNotificationTimeMS(0)
222 if (!m_lastProgressNotificationTimeMS)
223 m_lastProgressNotificationTimeMS = now;
224 else if (now - m_lastProgressNotificationTimeMS > progressNotificationIntervalMS) {
226 m_lastProgressNotificationTimeMS = now;
FileReader.h 134 double m_lastProgressNotificationTimeMS;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.cpp 64 , m_lastProgressNotificationTimeMS(0)
205 if (complete || !m_lastProgressNotificationTimeMS || (now - m_lastProgressNotificationTimeMS > progressNotificationIntervalMS)) {
206 m_lastProgressNotificationTimeMS = now;
FileWriter.h 127 double m_lastProgressNotificationTimeMS;

Completed in 341 milliseconds