// 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 "components/dom_distiller/core/article_entry.h" namespace dom_distiller { ArticleEntry::ArticleEntry() = default; ArticleEntry::ArticleEntry(const ArticleEntry&) = default; ArticleEntry::~ArticleEntry() = default; bool IsEntryValid(const ArticleEntry& entry) { … } } // namespace dom_distiller