#include <sstream>
#include "base/strings/stringprintf.h"
#include "chrome/browser/sync_file_system/file_change.h"
namespace sync_file_system {
FileChange::FileChange(
ChangeType change,
SyncFileType file_type)
: … { … }
std::string FileChange::DebugString() const { … }
FileChangeList::FileChangeList() { … }
FileChangeList::FileChangeList(const FileChangeList& other) = default;
FileChangeList::~FileChangeList() { … }
void FileChangeList::Update(const FileChange& new_change) { … }
FileChangeList FileChangeList::PopAndGetNewList() const { … }
std::string FileChangeList::DebugString() const { … }
}