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

  /external/chromium_org/chrome/browser/chromeos/drive/
file_change.cc 44 FileChange::ChangeList::ChangeList() {
46 FileChange::ChangeList::~ChangeList() {
49 void FileChange::ChangeList::Update(const Change& new_change) {
75 FileChange::ChangeList FileChange::ChangeList::PopAndGetNewList() const {
76 ChangeList changes;
82 std::string FileChange::ChangeList::DebugString() const {
101 const FileChange::ChangeList& new_change)
    [all...]
change_list_processor.cc 74 ChangeList::ChangeList() {}
76 ChangeList::ChangeList(const google_apis::ChangeList& change_list)
95 ChangeList::ChangeList(const google_apis::FileList& file_list)
114 ChangeList::~ChangeList() {}
125 ScopedVector<ChangeList> change_lists
    [all...]
change_list_processor.h 21 class ChangeList;
70 class ChangeList {
72 ChangeList(); // For tests.
73 explicit ChangeList(const google_apis::ChangeList& change_list);
74 explicit ChangeList(const google_apis::FileList& file_list);
75 ~ChangeList();
98 DISALLOW_COPY_AND_ASSIGN(ChangeList);
116 ScopedVector<ChangeList> change_lists,
126 scoped_ptr<ChangeList> change_list
    [all...]
file_change.h 57 class ChangeList {
61 ChangeList();
62 ~ChangeList();
74 ChangeList PopAndGetNewList() const;
83 typedef std::map<base::FilePath, FileChange::ChangeList> Map;
91 const FileChange::ChangeList& list);
  /external/chromium_org/google_apis/drive/
drive_api_parser.cc 176 const char kChangeListKind[] = "drive#changeList";
588 // ChangeList implementation
590 ChangeList::ChangeList() : largest_change_id_(0) {}
592 ChangeList::~ChangeList() {}
595 void ChangeList::RegisterJSONConverter(
596 base::JSONValueConverter<ChangeList>* converter) {
598 &ChangeList::next_link_,
601 &ChangeList::largest_change_id_
    [all...]
drive_api_parser.h 680 friend class ChangeList;
695 // ChangeList represents a set of changes in the drive.
697 class ChangeList {
699 ChangeList();
700 ~ChangeList();
705 base::JSONValueConverter<ChangeList>* converter);
707 // Returns true if the |value| has kind field for ChangeList.
711 static scoped_ptr<ChangeList> CreateFrom(const base::Value& value);
743 DISALLOW_COPY_AND_ASSIGN(ChangeList);

Completed in 67 milliseconds