chromium/third_party/blink/renderer/core/css/media_query_list.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_list.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_listener.h"
#include "third_party/blink/renderer/core/css/media_query_matcher.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/event_target_names.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/layout/layout_embedded_object.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"

namespace blink {

MediaQueryList::MediaQueryList(ExecutionContext* context,
                               MediaQueryMatcher* matcher,
                               MediaQuerySet* media)
    :{}

MediaQueryList::~MediaQueryList() = default;

String MediaQueryList::media() const {}

void MediaQueryList::addDeprecatedListener(V8EventListener* listener) {}

void MediaQueryList::removeDeprecatedListener(V8EventListener* listener) {}

void MediaQueryList::AddListener(MediaQueryListListener* listener) {}

void MediaQueryList::RemoveListener(MediaQueryListListener* listener) {}

bool MediaQueryList::HasPendingActivity() const {}

void MediaQueryList::ContextDestroyed() {}

bool MediaQueryList::MediaFeaturesChanged(
    HeapVector<Member<MediaQueryListListener>>* listeners_to_notify) {}

bool MediaQueryList::UpdateMatches() {}

bool MediaQueryList::matches() {}

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

const AtomicString& MediaQueryList::InterfaceName() const {}

ExecutionContext* MediaQueryList::GetExecutionContext() const {}

}  // namespace blink