chromium/third_party/blink/renderer/core/css/media_query_matcher.cc

/*
 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public License
 *  along with this library; see the file COPYING.LIB.  If not, write to
 *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301, USA.
 */

#include "third_party/blink/renderer/core/css/media_query_matcher.h"

#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/metrics/document_update_reason.h"
#include "third_party/blink/renderer/core/css/media_list.h"
#include "third_party/blink/renderer/core/css/media_query_evaluator.h"
#include "third_party/blink/renderer/core/css/media_query_list.h"
#include "third_party/blink/renderer/core/css/media_query_list_event.h"
#include "third_party/blink/renderer/core/css/media_query_list_listener.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"

namespace blink {

MediaQueryMatcher::MediaQueryMatcher(Document& document)
    :{}

MediaQueryMatcher::~MediaQueryMatcher() = default;

void MediaQueryMatcher::DocumentDetached() {}

MediaQueryEvaluator* MediaQueryMatcher::CreateEvaluator() const {}

bool MediaQueryMatcher::Evaluate(const MediaQuerySet* media) {}

MediaQueryList* MediaQueryMatcher::MatchMedia(const String& query) {}

void MediaQueryMatcher::AddMediaQueryList(MediaQueryList* query) {}

void MediaQueryMatcher::RemoveMediaQueryList(MediaQueryList* query) {}

void MediaQueryMatcher::AddViewportListener(MediaQueryListListener* listener) {}

void MediaQueryMatcher::RemoveViewportListener(
    MediaQueryListListener* listener) {}

void MediaQueryMatcher::MediaFeaturesChanged() {}

void MediaQueryMatcher::ViewportChanged() {}

void MediaQueryMatcher::DynamicViewportChanged() {}

void MediaQueryMatcher::Trace(Visitor* visitor) const {}

}  // namespace blink