chromium/chrome/browser/sync_file_system/file_change.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace sync_file_system