Searched defs:download_progress (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/system_private/
H A Dsystem_private_api.cc77 double download_progress = 0; local
84 // |download_progress| is set to 1 after download finishes
86 // even though |status.download_progress| is 0 in these phases.
102 download_progress = status.download_progress;
106 download_progress = 1;
110 download_progress = 1;
114 download_progress = 1;
124 download_progress = 1;
131 dict->SetDouble(kDownloadProgressKey, download_progress);
[all...]
/external/chromium_org/chromeos/dbus/
H A Dupdate_engine_client.h44 download_progress(0.0),
50 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateEngineClient::Status
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_scheduler_unittest.cc925 std::vector<int64> download_progress; local
926 logger.GetProgressInfo(TYPE_DOWNLOAD_FILE, &download_progress);
927 ASSERT_TRUE(!download_progress.empty());
928 EXPECT_TRUE(base::STLIsSorted(download_progress));
929 EXPECT_GE(download_progress.front(), 0);
930 EXPECT_LE(download_progress.back(), 26);
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dupdate_screen.cc165 download_start_progress_ = status.download_progress;
166 download_last_progress_ = status.download_progress;
399 std::max(status.download_progress - download_last_progress_, 0.0);
405 download_last_progress_ = status.download_progress;
408 double progress_left = std::max(1.0 - status.download_progress, 0.0);
421 (status.download_progress - download_start_progress_) /
435 int download_progress = static_cast<int>( local
436 status.download_progress * kDownloadProgressIncrement);
437 actor_->SetProgress(kBeforeDownloadProgress + download_progress);
/external/chromium_org/sync/syncable/
H A Ddirectory.h108 // Set the |download_progress| entry for the given model to a
117 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncer::syncable::Directory::PersistedKernelInfo

Completed in 177 milliseconds