blob: 50f38ee019603c03a5c8381abcef52eb079ef2cf [file] [log] [blame]
/*
* 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 "config.h"
#include "core/css/MediaQueryListListener.h"
#include "bindings/core/v8/ScriptController.h"
#include "bindings/core/v8/V8MediaQueryList.h"
#include <v8.h>
namespace blink {
MediaQueryListListener::MediaQueryListListener()
{
// only for use by subclasses
}
// FIXME: Rename MediaQueryListListener to something more generic, once it's no longer Web exposed.
MediaQueryListListener::MediaQueryListListener(ScriptState* scriptState, const ScriptValue& function)
: m_scriptState(scriptState)
, m_function(function)
{
ASSERT(m_function.isFunction());
}
MediaQueryListListener::~MediaQueryListListener()
{
}
void MediaQueryListListener::call()
{
if (!m_query)
return;
if (m_scriptState->contextIsEmpty())
return;
ScriptState::Scope scope(m_scriptState.get());
v8::Handle<v8::Value> args[] = { toV8(m_query.get(), m_scriptState->context()->Global(), m_scriptState->isolate()) };
ScriptController::callFunction(m_scriptState->executionContext(), v8::Handle<v8::Function>::Cast(m_function.v8Value()), m_scriptState->context()->Global(), WTF_ARRAY_LENGTH(args), args, m_scriptState->isolate());
}
}