chromium/chrome/browser/sync_file_system/drive_backend/tracker_id_set.cc

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

#include "chrome/browser/sync_file_system/drive_backend/tracker_id_set.h"

#include "base/check_op.h"
#include "base/containers/contains.h"
#include "chrome/browser/sync_file_system/drive_backend/metadata_database.pb.h"

namespace sync_file_system {
namespace drive_backend {

TrackerIDSet::TrackerIDSet() :{}

TrackerIDSet::TrackerIDSet(const TrackerIDSet& other) = default;

TrackerIDSet::~TrackerIDSet() {}

void TrackerIDSet::Insert(const FileTracker& tracker) {}

void TrackerIDSet::InsertActiveTracker(int64_t tracker_id) {}

void TrackerIDSet::InsertInactiveTracker(int64_t tracker_id) {}

void TrackerIDSet::Erase(int64_t tracker_id) {}

void TrackerIDSet::Activate(int64_t tracker_id) {}

void TrackerIDSet::Deactivate(int64_t tracker_id) {}

}  // namespace drive_backend
}  // namespace sync_file_system