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

  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
register_app_task_unittest.cc 106 FileTracker sync_root_tracker; local
107 sync_root_tracker.set_tracker_id(service_metadata.sync_root_tracker_id());
108 sync_root_tracker.set_parent_tracker_id(0);
109 sync_root_tracker.set_file_id(sync_root_metadata.file_id());
110 sync_root_tracker.set_tracker_kind(TRACKER_KIND_REGULAR);
111 *sync_root_tracker.mutable_synced_details() = sync_root_details;
112 sync_root_tracker.set_active(true);
119 PutFileTrackerToBatch(sync_root_tracker, &batch);
register_app_task.cc 87 FileTracker sync_root_tracker; local
90 &sync_root_tracker);
96 sync_root_tracker.file_id(), app_id_));
metadata_database_unittest.cc 320 FileTracker sync_root_tracker; local
321 sync_root_tracker.set_tracker_id(kSyncRootTrackerID);
322 sync_root_tracker.set_parent_tracker_id(0);
323 sync_root_tracker.set_file_id(sync_root.file_id());
324 sync_root_tracker.set_dirty(false);
325 sync_root_tracker.set_active(true);
326 sync_root_tracker.set_needs_folder_listing(false);
327 *sync_root_tracker.mutable_synced_details() = sync_root.details();
328 return sync_root_tracker;
725 FileTracker sync_root_tracker(CreateSyncRootTracker(sync_root))
    [all...]
metadata_database_index_unittest.cc 94 scoped_ptr<FileTracker> sync_root_tracker = local
101 sync_root_tracker.get());
115 contents->file_trackers.push_back(sync_root_tracker.release());
sync_engine_initializer_unittest.cc 175 FileTracker sync_root_tracker; local
177 sync_root_tracker_id, &sync_root_tracker));
178 return sync_root_tracker.file_id();
metadata_database.cc 81 scoped_ptr<FileTracker> sync_root_tracker(new FileTracker);
82 sync_root_tracker->set_tracker_id(tracker_id);
83 sync_root_tracker->set_file_id(sync_root_metadata.file_id());
84 sync_root_tracker->set_parent_tracker_id(0);
85 sync_root_tracker->set_tracker_kind(TRACKER_KIND_REGULAR);
86 sync_root_tracker->set_dirty(false);
87 sync_root_tracker->set_active(true);
88 sync_root_tracker->set_needs_folder_listing(false);
89 *sync_root_tracker->mutable_synced_details() = sync_root_metadata.details();
90 return sync_root_tracker.Pass()
2077 scoped_ptr<FileTracker> sync_root_tracker = local
    [all...]

Completed in 1202 milliseconds