// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/offline_pages/core/client_id.h" #include <ostream> namespace offline_pages { ClientId::ClientId() { … } ClientId::ClientId(const std::string& name_space, const std::string& id) : … { … } bool ClientId::operator==(const ClientId& client_id) const { … } bool ClientId::operator<(const ClientId& client_id) const { … } std::string ClientId::ToString() const { … } std::ostream& operator<<(std::ostream& out, const ClientId& cid) { … } } // namespace offline_pages