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

  /external/chromium_org/chrome/browser/extensions/api/system_private/
system_private_api.cc 77 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...]
system_private_apitest.cc 60 status_updating.download_progress = 0.5;
  /external/chromium_org/chromeos/dbus/
update_engine_client.h 44 download_progress(0.0),
50 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateEngineClient::Status
update_engine_client.cc 301 reader.PopDouble(&status.download_progress) &&
368 status.download_progress = progress;
463 last_status_.download_progress = 0.0;
493 if (last_status_.download_progress >= 1.0) {
497 last_status_.download_progress += 0.01;
  /external/chromium_org/chrome/browser/chromeos/login/screens/
update_screen.cc 158 download_start_progress_ = status.download_progress;
159 download_last_progress_ = status.download_progress;
392 std::max(status.download_progress - download_last_progress_, 0.0);
398 download_last_progress_ = status.download_progress;
401 double progress_left = std::max(1.0 - status.download_progress, 0.0);
414 (status.download_progress - download_start_progress_) /
428 int download_progress = static_cast<int>( local
429 status.download_progress * kDownloadProgressIncrement);
430 actor_->SetProgress(kBeforeDownloadProgress + download_progress);
update_screen_browsertest.cc 166 status.download_progress = 0.0;
169 status.download_progress = 0.5;
172 status.download_progress = 1.0;
  /external/chromium_org/chrome/browser/ui/webui/help/
version_updater_chromeos.cc 188 progress = static_cast<int>(round(status.download_progress * 100));
  /external/chromium_org/chrome/browser/chromeos/drive/
job_scheduler_unittest.cc 935 std::vector<int64> download_progress; local
936 logger.GetProgressInfo(TYPE_DOWNLOAD_FILE, &download_progress);
937 ASSERT_TRUE(!download_progress.empty());
938 EXPECT_TRUE(base::STLIsSorted(download_progress));
939 EXPECT_GE(download_progress.front(), 0);
940 EXPECT_LE(download_progress.back(), 26);
    [all...]
  /external/chromium_org/sync/syncable/
directory.cc 53 download_progress[model_type].Clear();
54 download_progress[model_type].set_data_type_id(
58 download_progress[model_type].set_token("");
885 kernel_->persisted_info.download_progress[model_type]);
892 kernel_->persisted_info.download_progress[model_type].SerializeToString(
905 kernel_->persisted_info.download_progress[model_type].CopyFrom(new_progress);
    [all...]
directory.h 107 // Set the |download_progress| entry for the given model to a
113 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncer::syncable::Directory::PersistedKernelInfo
directory_backing_store_unittest.cc     [all...]
directory_backing_store.cc 293 info.download_progress[type].SerializeToString(&progress_marker);
606 info->kernel_info.download_progress[type].ParseFromArray(
    [all...]

Completed in 378 milliseconds