chromium/third_party/blink/renderer/core/events/ui_event_with_key_state.cc

/*
 * Copyright (C) 2006 Apple Computer, Inc.
 *
 * 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/events/ui_event_with_key_state.h"

#include "build/build_config.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_event_modifier_init.h"

namespace blink {

UIEventWithKeyState::UIEventWithKeyState(
    const AtomicString& type,
    Bubbles bubbles,
    Cancelable cancelable,
    AbstractView* view,
    int detail,
    WebInputEvent::Modifiers modifiers,
    base::TimeTicks platform_time_stamp,
    InputDeviceCapabilities* source_capabilities)
    :{}

UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type,
                                         const EventModifierInit* initializer,
                                         base::TimeTicks platform_time_stamp)
    :{}

bool UIEventWithKeyState::new_tab_modifier_set_from_isolated_world_ =;

void UIEventWithKeyState::DidCreateEventInIsolatedWorld(bool ctrl_key,
                                                        bool shift_key,
                                                        bool alt_key,
                                                        bool meta_key) {}

void UIEventWithKeyState::SetFromWebInputEventModifiers(
    EventModifierInit* initializer,
    WebInputEvent::Modifiers modifiers) {}

bool UIEventWithKeyState::getModifierState(const String& key_identifier) const {}

void UIEventWithKeyState::InitModifiers(bool ctrl_key,
                                        bool alt_key,
                                        bool shift_key,
                                        bool meta_key) {}

const UIEventWithKeyState* FindEventWithKeyState(const Event* event) {}

}  // namespace blink