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

  /external/chromium/chrome/browser/chromeos/cros/
update_library.h 33 download_progress(0.0),
40 download_progress(x.download_progress_),
47 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateLibrary::Status
  /external/chromium_org/chrome/browser/extensions/api/system_private/
system_private_api.cc 76 double download_progress = 0; local
83 // |download_progress| is set to 1 after download finishes
85 // even though |status.download_progress| is 0 in these phases.
101 download_progress = status.download_progress;
105 download_progress = 1;
109 download_progress = 1;
113 download_progress = 1;
122 download_progress = 1;
129 dict->SetDouble(kDownloadProgressKey, download_progress);
    [all...]
  /external/chromium_org/chromeos/dbus/
update_engine_client.h 46 download_progress(0.0),
52 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateEngineClient::Status
  /external/chromium/chrome/browser/chromeos/login/
update_screen.cc 118 int download_progress = static_cast<int>( local
119 library->status().download_progress * kDownloadProgressIncrement);
120 view()->SetProgress(kBeforeDownloadProgress + download_progress);
  /external/chromium_org/chrome/browser/chromeos/drive/
job_scheduler_unittest.cc 853 std::vector<int64> download_progress; local
854 logger.GetProgressInfo(TYPE_DOWNLOAD_FILE, &download_progress);
855 ASSERT_TRUE(!download_progress.empty());
856 EXPECT_TRUE(base::STLIsSorted(download_progress));
857 EXPECT_GE(download_progress.front(), 0);
858 EXPECT_LE(download_progress.back(), 26);
  /external/chromium_org/chrome/browser/chromeos/login/screens/
update_screen.cc 174 download_start_progress_ = status.download_progress;
175 download_last_progress_ = status.download_progress;
413 std::max(status.download_progress - download_last_progress_, 0.0);
419 download_last_progress_ = status.download_progress;
422 double progress_left = std::max(1.0 - status.download_progress, 0.0);
435 (status.download_progress - download_start_progress_) /
449 int download_progress = static_cast<int>( local
450 status.download_progress * kDownloadProgressIncrement);
451 actor_->SetProgress(kBeforeDownloadProgress + download_progress);
  /external/chromium_org/sync/syncable/
directory.h 97 // Set the |download_progress| entry for the given model to a
103 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncer::syncable::Directory::PersistedKernelInfo
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 692 // Set the |download_progress| entry for the given model to a
698 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncable::Directory::PersistedKernelInfo
    [all...]

Completed in 269 milliseconds