Home | History | Annotate | Download | only in test
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "ui/events/test/events_test_utils.h"
      6 
      7 namespace ui {
      8 
      9 EventTestApi::EventTestApi(Event* event) : event_(event) {}
     10 EventTestApi::~EventTestApi() {}
     11 
     12 LocatedEventTestApi::LocatedEventTestApi(LocatedEvent* event)
     13     : EventTestApi(event),
     14       located_event_(event) {}
     15 LocatedEventTestApi::~LocatedEventTestApi() {}
     16 
     17 EventTargetTestApi::EventTargetTestApi(EventTarget* target)
     18     : target_(target) {}
     19 
     20 }  // namespace ui
     21